Pergunta

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?

Foi útil?

Solução

Try

grid.getView().scrollRowIntoView(rowIndex)
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top