Fires when a row is deselected
Fires when a row is selected
Fires when selection changes. When holding arrow on keyboard it will only fire once at key up to prevent flooding the server with requests
get store record in list config
rowSelection: {
multiSelect: true,
listeners: {
selectionchange: (rowSelect) => {
if(rowSelect.getSelected().length == 1) {
const table = rowSelect.getTable();
const record = table.getStore().getRecordAt(rowSelect.getSelected()[0]);
}
}
}
}
Generated using TypeDoc
Component events
See
ComponentEventMap