Documentation

updateFromResponse

server data update mode

boolean updateFromResponse;

Example

webix.ui({
   view:"list",
   save:{
     url: "my.php",
     updateFromResponse:true
   }
})

See also

Details

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