onBeforeEditStart

fires before edit operation is initiated

boolean onBeforeEditStart(object cell);
cellobjectthe cell that will be edited (details below)
booleanreturning false will prevent editing of an item

Example

$$("property").attachEvent("onBeforeEditStart", function(cell){
    //... some code here ... 
    return true;
});

Details

The cell parameter is the ID of the property that is to be edited.

See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.