updateFromResponse

server data update mode

boolean updateFromResponse;

Example

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

Details

In this mode, DataProcessor will expect to receive a JSON object as a response for the update and insert commands. 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.

See also
Back to top