.rowCount() |
Returns the number of records that a row set currently contains. This is taking into account the records queried from the server, but also any records inserted/deleted on the client. Contrast with .dbCount(). Syntax
Example var numRows = $.udb('EMP').rowSet('current').rowCount(); |