afterSelect
fires after selecting a cell
afterSelect: (row: object, column: object) => void;
Parameters:
The callback of the event is called with the following parameters:
row: object
- the config of a rowcolumn: object
- the config of a column
Example
grid.selection.events.on("AfterSelect", (row, column) => {
console.log("afterSelect", row, column);
});
It is also possible to use the simplified version of the event:
grid.events.on("AfterSelect", (row, column) => {
console.log("afterSelect", row, column);
});
Change log:
added in v7.0