undoOnError

defines whether undo will be made if server returns error response

boolean undoOnError;

Example

var dp = new webix.DataProcessor({
    master:$$("list"),
    url:"some.php",
    undoOnError:true
});

Details

Pay attention that the undo property should be enabled for the data component

Back to top