proxy.post

webix.proxy.post

webix.proxy.post helper.

Please look into the linked official documentation.

References

helpers
ajax(), extend().

External references

Official documentation page.

Code

1
2
3
4
5
6
7
webix.proxy.post = {
    $proxy:true,
    load:function(view, callback, params){
        params = webix.extend(params||{}, this.params || {}, true);
        webix.ajax().bind(view).post(this.source, params, callback);
    }
};