proxy.sync¶
webix.proxy.
sync
¶webix.proxy.sync helper.
Please look into the linked official documentation.
External references¶
Code¶
1 2 3 4 5 6 | webix.proxy.sync = {
$proxy:true,
load:function(view, callback){
webix.ajax().sync().bind(view).get(this.source, null, callback);
}
};
|