Skip to main content

afterUnSelect

fires after unselecting a cell

afterUnSelect: (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("AfterUnSelect", function(row, col){
console.log("afterUnSelect", row, col);
});

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

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

Change log:

added in v7.0