Categories | Question details Back To List | ||||||||
DHTML Calendar opening IFRAME with 404 under the calendar in IE I added a simple calendar to a page to try it out, but in IE after the calendar opens, a small IFRAME the same exact size of the calendar and immediately below it opens up with a 404-Not Found error in the IFRAME. However, works perfect in FF. SOURCE: <html> <head> <title>Untitled Document</title> <link href="dhtmlx/dhtmlxCalendar/codebase/dhtmlxcalendar.css" rel="stylesheet" type="text/css" /> <link href="dhtmlx/dhtmlxCalendar/codebase/dhtmlxcalendar_skins.css" rel="stylesheet" type="text/css" /> </head> <body> <script src="dhtmlx/dhtmlxCalendar/codebase/dhtmlxcalendar.js"></script> <script src="dhtmlx/dhtmlxCalendar/codebase/dhtmlxcommon.js"></script> <input type="text" id="calInput1" class="css1" readonly="true" style="background-image:url(images/icon_calendar.jpg); background-repeat:no-repeat; background-position:right; cursor:pointer" alt="Select date please"> <script> cal1 = new dhtmlxCalendarObject('calInput1'); </script> </body> </html> UNDESIRED IFRAME IN OUTPUT AFTER CLICK: <IFRAME class=dhtmlxcalendar_ifr style="POSITION: absolute; className: dhtmlxcalendar" src="undefined/blank.html" frameBorder=no></IFRAME> Answer posted by Support on Sep 25, 2008 02:27 Yes, this iframe needs only for fix IE layouts bug. Therefore others browsers doesn't show it. To resolve problem with error 404 in iframe you have to make sure that you have set path for calendar images, before init : <script> window.dhx_globalImgPath="dhtmlx/dhtmlxCalendar/codebase/imgs/"; </script> And if iframe position not the same of the calendar you can try to replace your dhtmlxcalendar.js with latestversion from attachment. Attachments (1)
|