Get and send data using web services and localization

Hi All,

I would like to use the dhtmlxScheduler for a mobile app. But the problem is the back end is web services. So can I send and receive data from using javascript and web services in the dhtmlxScheduler.

And also I would like to know whether are there any localization support.

Thanks in advance.

In which format webservice does provide data ?
Scheduler can load data from xml, json, csv but if it is necessary it possible to implement custom loading formats as well. Normally you can just use

scheduler.load(url_of_webservice, “json”);

And also I would like to know whether are there any localization support.
Check
docs.dhtmlx.com/doku.php?id=dhtm … calization
25 languages and +2 in oncoming scheduler 3.7

HI,

Thanks for replying. Currently we are looking for the possible ways of calling a web service using javascript. If we cal do it in Jeson, then that also would be grate. The web services will be WCF web services.

Simply calling

scheduler.load(“web service url here”)

will trigger web service and get data from it.
The problem is, that raw data from WCF web service is not compatible with scheduler.

You can have 3 component logic as next

scheduler => server side script => remote web service

scheduler will user scheduler.load(“url of server side script”) and server side script will get data from remote web service and output it in scheduler compatible format.