Rowset.range()
note
This article is about the range() function of the Rowset object.
Rowset.range()
Gets the range of records string of this Rowset.
Returns a string.
Syntax
row-set.range()
Example
if (options.mode !== "S") {
var rowSet = dsc.rowSet(pRef);
this.$control.text(rowSet.exists() ? rowSet.range() : "0-0");
}