Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Konstantin on Apr 02, 2009 03:32
open dhtmlx forum
dhtmlxCalendar

Hi!
I have a problem with calendar object working with MS IE7.
Just create calendar object and IE shows me error message like "Can't open ... http://www.<my request string>".
In Firefox it works fine.
Can you help me?
Answer posted by Alex (support) on Apr 02, 2009 04:43

Hello, 

Please, take a look at the sample in calendar package dhtmlxCalendar/samples/initialization/calendar_init.html. Possibly it'll help to resolve the problem.

If the issue still persists, please, provide any sample where the issue can be reproduced.

Answer posted by Konstantin on Apr 02, 2009 05:55
Thanks. I've found the decision of problem. Write
mCal = new dhtmlxCalendarObject("date_inp", false);
dhtmlxEvent(window,"load",function(){ mCal.draw(); });

in place of
mCal = new dhtmlxCalendarObject("date_inp", true);
mCal.draw();

Works in all browsers.
Thanks again.