onBindUpdate

fires when data is changed in the slave and 'save()' is called to update the master.

void onBindUpdate(object data,id key);
dataobjectthe updated data
keyidthe id of the slave component

Example

some.attachEvent("onBindUpdate", function(data, key){
    //... some code here ... 
});

Details

Works only for the components that are bound.

See also
  • API
  • Articles
  • Back to top