Skip to main content
Version: 10.1

Rowset.dataSetIndicator()

note

This article is about the dataSetIndicator() function of the Rowset object.

Rowset.dataSetIndicator()

Gets the current data set indicator of the row set. For a given row set in a data source, a data set indicator is used to refer to the subset of the records (the data set) that is currently selected. If the Maximum Number of Records property of a data source is set to 5, the data set indicator '1' refers to records 1-5, the data set indicator '2' refers to records 6-10, and so on.

Returns an integer.

Syntax

*row-set*.dataSetIndicator()

Example

...
if ($this.hasClass("previous"))
dsi = $.udb(this.dsId).rowSet(pRef).dataSetIndicator() - 1;
...