onIdChange

the event fires when the ID of a record is changed

void onIdChange(string|number oldid,string|number newid);
oldidstring|numberthe old record ID
newidstring|numberthe new record ID

Example

view.data.attachEvent("onIdChange", function(oldid, newid){
    webix.message("An ID was changed");
));

See also
Back to top