Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jorge Arzuaga on Jul 09, 2009 07:30
open dhtmlx forum
dhtmxScheduler Error in IE

Hi, in another post you send me the .js (http://dhtmlx.com/docs/products/kb/index.php?s=normal&q=10356&a=16883), but after this, it doesn't work correctly in IE if i comment the next code works fine but shrink the scheduler and don't show fine.. In firefox works perfectly.

scheduler.set_xy=function(node,w,h,x,y){
 //node.style.width=w+"px";
// node.style.height=h+"px";
 if (arguments.length>3){
  //node.style.left=x+"px";
  //node.style.top=y+"px"; 
 }
}

 

 

Jorge Arzuaga

Answer posted by Support on Jul 09, 2009 09:58
Please be sure that container, in which scheduler has been initialized - has some non-zero sizes. 
Or you can use an updated version, which will not throw an error with any sizes of window. 
Attachments (1)
Answer posted by Jorge Arzuaga on Jul 09, 2009 10:28
Thanks...