afterSelect
fires after selecting an item
afterSelect: (id: string | number) => void;
Parameters:
id: string | number
- the id of an item
Example
component.selection.events.on("afterSelect", function(id){
console.log("An item is selected");
});