.isQueried()

Previous Next

Checks whether or not the row set has been queried for records. This information can then be used to determine e.g. whether or not to query the row set.

Returns a Boolean.

Syntax

.isQueried()

 

Example

var ds = $.udb("EMP");

if (ds.initialState() === "Query" && ds.rowSet('current').isQueried()) {

 ds.executeQuery();

}