Documentation

onBeforeUnSelect

fired before a cell is unselected

void onBeforeUnSelect(object data){ ... };

Parameters

dataobjectthe unselected object

Example

some.attachEvent("onBeforeUnSelect", function(data){
    //... some code here ... 
});

See also

Back to top