Documentation

onBeforeSelect

fires before item selection is started

void onBeforeSelect(id id,boolean selection){ ... };

Parameters

ididid of item
selectionbooleantrue if the item was selected, false if it was unselected

Example

some.attachEvent("onBeforeSelect", function (id, selection){
  // ... some code here ...
});

See also

Back to top