$.udb(ds).rowCount()
note
This article is about the rowCount() function of the DataSourceContainer object.
$.udb(ds).rowCount()
Returns the number of records of the first data source in the container.
Syntax
$.udb( *ds* ).rowCount()
The optional ds is a data source selector.
Example
$.udb('EMP').rowCount();
This is short for:
$.udb('EMP').rowSet('current').rowCount();