Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Charlie R Chisholm on May 23, 2009 12:09
open dhtmlx forum
Scheduler and coldfusion

We have been using dhtmlx for a couple years and would like to try using the scheduler. I only see a dataprocessor for PHP. Is there one for coldfusion? We could write our own action if we could attach to the "save" button if there is no connector. Can you help me with this?

Also, is there a way to change the date in the day view without paging through the months, then weeks and then days?

Charlie R Chisholm
Director of IT Research and Development
Director of Support 2020
Goodwill Industries Suncoast, Inc.
St Petersburg, FL
727.523.1512 ext 1800 (office)
727.579.8516 (fax)
727.423.9010 (cell)
866-370-4202 (Support 2020)
Answer posted by dhxSupport on May 25, 2009 01:49
>> I only see a dataprocessor for PHP
The client-side part of dataProcessor can work for any platform, the server side part - dhtmlxConnector , currently available for PHP only ( we are working to extend it to other server side  platforms ) 
It pretty simple to implement data loading from any kind of script - because all you need - provide XML data in necessary format. Saving is a bit more complex, you can check details about dataprocessor's data syncing at next article, it is describes usage with grid, but it works the same for scheduler as well 
http://dhtmlx.com/docs/products/dhtmlxGrid/doc/articles/Dataprocesor_usage.html#grid_art_dataprocessor



>>Also, is there a way to change the date in the day view without paging through the months
From GUI - you can use arrow placed before "today" button
From script - you can use 
        scheduler.set_current_view(date,mode);
where date - JS date object , pointing to necessary date
           mode - one from next list: "month","week","day"