Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Charlie on Dec 24, 2008 21:08
open dhtmlx forum
Click on Calendar Date - launch window?

I am evaluating your calendar and wondering if it would be possible to click on a date and launch a window? If so, can you provide a simple code to help me get started?
Answer posted by Support on Dec 29, 2008 17:21
Can be done as

cal.setOnClickHandler(function(date){
    window.open("some_url?date"=date);
    return true;
});