fires when data was changed by any means
id | string | id of item that was updated |
data | object | data object of updated item |
mode | string | update type ("update", "insert", "delete", "paint", "move") |
myDataStore.attachEvent("onStoreUpdated", function(id, data, mode){
//custom code
});
Back to top