Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcyou/6c1ee3d704e50e1f424aa308bdf583c3 to your computer and use it in GitHub Desktop.
Save dcyou/6c1ee3d704e50e1f424aa308bdf583c3 to your computer and use it in GitHub Desktop.
Get selected record in ExtJS 4.2.1
getSelectedRecord: function() {
var grid = this.getGrid(),
records = grid.getSelectionModel().getSelection(),
record;
if(records.length) {
// get first record from selection
record = records[0];
// find selection record in store
record = grid.getStore().getById(record.getId());
if(record) return record;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment