Categories | Question details Back To List | ||
Seperate Calendar in dhtmlscheduler Hii I am using this dhtmlscheduler in my project. I need one more facility to be added on to this. Can we have a separate calendar to select the date, week and month so that when we select the date on the calendar corresponding events are displayed on the scheduler. Please provide with a solution Thank You Vineetha Thomas Answer posted by Alex (support) on Nov 23, 2009 02:31 Hello, Scheduler doesn't provide a ready solution. You can use addEvent method to add event that the date in the calendar is selected (it is possible to use dhtmlxCalendar to select the date): http://www.dhtmlx.com/dhxdocs/doku.php?id=dhtmlxscheduler:api_method_dhtmlxscheduler_addevent scheduler.addEvent({ scheduler.setCurrentView(date,"month"); Answer posted by Stanislav (support) on Nov 23, 2009 08:44 >>to select the date, week and month so that when we select the date on the calendar corresponding events are displayed on the scheduler Do you want to select the start and end dates , and for that period events will be loaded from server to the scheduler? You can create two date pickers of any time ( dhtmlxCalendar for example ) and when dates selected , the server side query can be called to load the necessary data only. There is no need in any scheduler's modifications. |