server data update mode
webix.ui({
view:"list",
save:{
url: "my.php",
updateFromResponse:true
}
})
In this mode, dataprocessor will expect to receive a json object as response for update and insert command. All data from such json object will be applied to the inserted|updated item.
In other words, server side can update the saved item on client side.
Back to top