beforeUnSelect
fires before unselecting a cell
beforeUnSelect: (row: object, column: object) => boolean | 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
Returns:
Return false
to prevent unselecting of a cell; otherwise, true
.
Example
treegrid.selection.events.on("beforeUnSelect", (row, column) => {
console.log("beforeUnSelect", row, column);
return false;
});
It is also possible to use the simplified version of the event:
treegrid.events.on("BeforeUnSelect", (row, column) => {
console.log("beforeUnSelect", row, column);
return false;
});
Change log:
added in v7.0