afterUnSelect
fires after unselecting an item
afterUnSelect: (id: string) => void;
Parameters:
id: string
- the id of an item
Example
component.selection.events.on("afterUnSelect", function(id){
console.log("An item is unselected");
});
fires after unselecting an item
id: string
- the id of an itemExample
component.selection.events.on("afterUnSelect", function(id){
console.log("An item is unselected");
});