beforeSelect
fires on selecting an item, but before the item is really selected
beforeSelect: (id: string | number) => void | boolean;
Parameters:
id: string | number
- the id of an item
Returns:
Return false
to prevent selecting of an item; otherwise, true
.
Example
component.selection.events.on("beforeSelect", function(id) {
console.log(id);
return false;
});