Question

How can we scroll to a defined record (record or index) in a grid?

Using a buffered renderer this is quite easy by calling:

grid.view.bufferedRenderer.scrollTo(0, false, callback, scope);

but how can this be done with a default renderer?

Was it helpful?

Solution

Try

grid.getView().scrollRowIntoView(rowIndex)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top