3.2.0

Go To row# in Grid

If i keep track of what row # a user is on, and they refresh the grid with new data, can i pass the row# into a function, to have it go to that spot in the grid?

The problem is, i have a grid that creates 5000 records. A user can select one or some users, and process them, once they are processed, i then rebuild the grid with the newly pulled data, but i start back at the top of the grid, not the section or user i was on.
Joe
August 4,
// select row 100 and scroll into view
obj.setTimeout(function(){
    this.selectRow(100);
}, 1000);
Alex (ActiveWidgets)
August 6,
that worked great.
But how do i keep track of what item they were on before the grid refreshsed?
Joe
August 6,
You can get the current row with obj.getCurrentRow()
Alex (ActiveWidgets)
August 6,

This topic is archived.

See also:


Back to support forum