3.2.0

Displayed row numbers

I'm using v2.0 grid. Is there a method to get the number(s) of the rows displayed after scrolling? For example, if I have 100 records in the grid and 10 are visible at the time, after scrolling down additional 10 records I would like to know that records 11-20 are displayed.
Mark
March 24,
you need to set obj.setRowHeaderWidth("0");
March 27,
Enable row selectors (hidden by default) -

obj.setSelectorVisible(true);
    obj.setSelectorText(function(i){return this.getRowPosition(i)+1});
    obj.setSelectorWidth(28);
Alex (ActiveWidgets)
March 29,

This topic is archived.

See also:


Back to support forum