Skip to main content
Version: 10.1

Rowset.position()

note

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

Rowset.position()

Gets the record position of this row set.

Returns a string.

Syntax

*row-set*.position()

Example

if (options.mode !== "S") {
var rowSet = dsc.rowSet(pRef);
this.$control.text(rowSet.exists() ? rowSet.position() : "0/0");
}