Documentation

onBeforeEditStart

fires before edit operation is initiated

void onBeforeEditStart(id id){ ... };

Parameters

ididthe id of the item which will be edited

Example

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

See also

Back to top