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