proxy.post¶
webix.proxy.
post
¶webix.proxy.post helper.
Please look into the linked official documentation.
External references¶
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);
}
};
|