In previous versions of extjs grid.getSelectionModel().getSelected() used to return selected row. Now this method does not exist. What is the alternate way?
Similarly what is alternative of grid.getStore().getById(rowIndex)
Is there any proper documentation which lists down all possible changes in GRID component in version 4 and also suggests new ways of doing things. I am really struggling hard to upgrade our Grid component.
In previous versions of extjs grid.getSelectionModel().getSelected() used to return selected row. Now this method does not exist. What is the alternate way?
- grid.getSelectionModel().getSelection() returns an array of selected records.
- grid.getSelectionModel().getLastSelected() returns last selected record.
Originally Posted by udayogra
Similarly what is alternative of grid.getStore().getById(rowIndex)