$.udb(ds).busy()
note
This article is about the busy() function of the DataSourceContainer object.
$.udb(ds).busy()
Gets the busy status of the first data source in the UdbDsc container.
Returns a boolean.
Syntax
$.udb( *ds* ).busy()
The required ds parameter is a data source selector.
Example
$.udb(':busy').forEach((ds) => {
console.log(ds.name()+' '+ds.busy());
})
$.udb('EMP').busy();
Example result:
false