I am trying to scroll to the last Element of a GridPanel, the last Element is already focused by
_this.testpanel.getSelectionModel().selectLastRow( );
I have tried many ways but none of them worked... The GridPanel is saved via
_this.testpanel =new Ext.grid.GridPanel(...
In the load function I tried
_this.testpanel.getRow(_this.receiver_list.getStore().getCount()-1).scrollIntoView(_this.receiver_list.getView(),false);
This one does nothing.
_this.receiver_list.getView().getRow(_this.receiver_list.getStore().getCount()-1).scrollIntoView("receiver_list");
This one scrolls the Form, the GrindPanel is inside. But not in the GridPanel itself.