fires when any change occurs
mode | string | the operation name |
name | string | the name of the page |
oldName | string | the name of the page after renaming |
webix.ui({
view:"spreadsheet",
toolbar:"full",
url: "/server/data",
on:{
onChange: function(mode, name, oldName){
switch (mode) {
case "update":
webix.ajax().headers({
"Content-type" : "application/json"
}).put(url+name, this.serialize());
break;
// ... other operations
}
}
}
});
Available operation names: