Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Steve on Aug 31, 2009 18:04
open dhtmlx forum
Scheduler

We are looking to implement the scheduler into our site and have it successfully loading data. We've added our own events (via scheduler.attachEvent) which for the most part is working as expected. Unfortunately using the dataProcessor won't work for us. The one issue we need to resolve is when a new event is added it is given a timestamp as the. Once added to the database using our javascript methods, how do we call to scheduler to change the id to the new one matching the recordId in the database?

Thanks,
Steve
Answer posted on Sep 01, 2009 00:53
>> how do we call to scheduler to change the id to the new one
If you know the new and old values of ID you can use
          scheduler.changeEventId(old_id_value, new_id_value);
Answer posted by Steve on Sep 01, 2009 16:50
Great that worked as I had hoped!