I have an application using ExtJs and DWR 2.0. I want to change it to Webix.Can I use this DWR 2.0 as server side connector with Webix.Please send me the valuable suggestions.
From DWR docs it seems that you can use it as transport for any data component
Remote.getData({
callback:function(data){
datatable.parse(data);
}
});
To get it more in-line with Webix syntax you can wrap DWR function in pseudo-promise and use directly in component’s config
webix.ui({
view:datatable,
autoConfig:true,
data: webix.promise.defer(function(resolve){
Remote.getData({ callback:resolve });
})
})