-
5 May 2012 11:02 PM #1
Unanswered: How to get the index of selected row after each Sort?
Unanswered: How to get the index of selected row after each Sort?
According to my rquirement I want to get the index of the selected row of a grid, whenever a sort event&nbsp; (the default one of EXT JS4 )occurs.<br>Please help.
-
9 May 2012 10:56 AM #2Sencha - Support Team
- Join Date
- Jul 2010
- Location
- Houston, Tx
- Posts
- 7,185
- Vote Rating
- 194
- Answers
- 433
You create a listener for the grid to get this information:
Regards,Code:this.grid.getSelectionModel().on('select', function(selModel, model, idx) { }, this);
Scott.


Reply With Quote