fires before a cell is selected
data | object | the selected object |
preserve | boolean | indicates whether the previous selection will be saved |
boolean | returning `false` will prevent item selection |
some.attachEvent("onBeforeSelect", function (data, preserve){
// ... some code here ...
// return false to block operation
return true;
});