Hi,
can you tell me if the mobile scheduler can be configured to work offline? … I am examining options to use in a Phonegap/cordova application. I dont mean does it support local storage - I am thinking that assuming it communicates by Ajax, that I could intercept the Ajax and manage the data loading/storage myself.
thanks,
Allen.
Hi,
Mobile version of scheduler is based on DHTMLX Touch that development was stopped. So, there can be issues with support of latest mobile devices:
dhtmlx.com/docs/products/dhtmlxSuite/touch.shtml
But if mobile scheduler fits your requirements, you may use the following to load and save data:
- use parse methdo instead of load to load inline dataset:
var data = [{id: 1, start_date: “…”, …},…];
…
$$(“scheduler”).load(data);
- set event handlers to manage event adding, deleting and updating, the sample is
samples/01_basic/08_events.html