deselecting

Fires when an item is marked for deselection.


The callback has two parameters which returns the original event and a reference to the item marked for deselection.

selectable.on("deselecting", function(e, item) {
    // Do something when an item is marked for deselection
});

Last updated