SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.onSelectionCleared  event

It will be fired when all existing selections are removed by calling clearSelection

After this event, onSelectionChanged event will be fired. 

function onSelectionCleared (grid: GridBase);
Returns
Void
Parameters
grid - GridBase.
Code -1
    grid.onSelectionCleared = function (grid) {
        console.log("selection cleared!");
    }
See Also
clearSelection
onSelectionChanged
Examples
Selection
Multiple Selection
Selection Display
Merged Cell Selection