processResult

process data saving results

void processResult(object data);
data
objectresponse data objects

Example

webix.ajax("save.php", data, function(text, data, loader){
    ...
    dp.processResult({
        id:"123",
        status:"update"
    });
});

Details

Can be used for custom data saving logic. After applying a custom saving logic, it's possible to call processResult() to finish the updating process.

The data object can have the following parameters:

Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.