Documentation

onDataUpdate

fires when data item is in update process

void onDataUpdate(id id,object data){ ... };

Parameters

ididid of item
dataobjectnew data hash

Example

some.attachEvent("onDataUpdate", function(id, data){
    //... some code here ... 
    //return false to block operation
    return true;
});

See also

Back to top