1

I am using dhtmlxScheduler timelineview calender. I am getting xml data from database but not able to load it out on calender.

1 Answers1

0

firstly you will need to use DHTMLX's connector(server side, to load the data) and data-processor(client side, to update data.

See here for more information on the connector.

So you will need how to use the PHP connector with the Scheduler. You can view DHTMLX's documentation on that here. And in this how-to they explain step-by-step how to load data from a database, and how it should be structured.

And here is just some basic documentation on the scheduler API that will be very useful.

I hope this is what you were looking for. Let me know if you need help.

Regards.

Ray Meyer
  • 143
  • 12
  • I am using the DHTMLX's connector. My data is loaded from the events.php file. It is working when I write day,month and week. But not load data when I write timeline. scheduler.init('scheduler_here',new Date(),"timeline"); // day,month,week,timeline scheduler.setLoadMode("timeline"); – Kailash Pathak Oct 09 '14 at 08:14
  • I have not used the setLoadMode method. However looking at the documentation. You are passing it an incorrect mode value. Have a look at the link below, change it and let me know what happens. http://docs.dhtmlx.com/scheduler/api__scheduler_setloadmode.html – Ray Meyer Oct 09 '14 at 08:52