Skip to main content

afterSelect

fires after selecting a cell

afterSelect: (row: object, col: object) => void;

Parameters:

  • row: object - the config of a row
  • col: object - the config of a column

Example

grid.selection.events.on("AfterSelect", function(row, col){
console.log("afterSelect", row, col);
});

It is also possible to use the simplified version of the event:

grid.events.on("AfterSelect", function(row, col){
console.log("afterSelect", row, col);
});

Change log:

added in v7.0