selecting

Fires when an item is marked for selection.


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

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

Last updated