Check documentation for the latest version of dhtmlxSuite onStoreUpdated DHTMLX Docs

onStoreUpdated

fires when data was changed by any means

void onStoreUpdated(string id,object data,string mode);
idstringid of item that was updated
dataobjectdata object of updated item
modestringupdate type ("update", "insert", "delete", "paint", "move")

Example

myDataStore.attachEvent("onStoreUpdated", function(id, data, mode){
    //custom code
});

Back to top