DHTMLX Calendar is not working in Firefox

DHTMLX calendar is working properly in IE but not even showing the calendar in IE 8, Firefox and others. In the case i put DHTMLX calendar in DHTMLX Window… why? can i get the solution?

	<div id="main">
		<td>
		Date From:
		</td>
		<td>
		<input type="text" id="calInput1" style="width: 100px; font-size:12px;" readonly="true" align="right" >
		</td>
		<td>
		Date To:
		</td>
		<td>
		<input type="text" id="calInput11" style="width: 100px; font-size:12px;" readonly="true" align="right">
		</td>
		<td><input id="btn" type="button" value="Get Data" onClick="getDate()" />
		</td>

		<div id="pyradiv" style="width:850px; height:400px;border :0px solid Silver; float:right; vertical-align:middle">
		</div> 
	</div>
function doOnLoad() {

        cal1 = new dhtmlxCalendarObject('calInput1');
        cal1.setOnClickHandler(selectDate1);
	
	    cal2 = new dhtmlxCalendarObject('calInput11');
        cal2.setOnClickHandler(selectDate2);


    	dhxWins = new dhtmlXWindows();
		dhxWins.enableAutoViewport(false);
		dhxWins.attachViewportTo("winVP");
		dhxWins.setImagePath("codebase/imgs/");
		w1 = dhxWins.createWindow("w1", 5, 5, 220, 500);
		w1.setText("dhtmlxWindow");
		w1.button("close").disable();
		w1.setText('Device Type');
		w1.hideHeader();

        w2 = dhxWins.createWindow("w2", 230, 80, 975, 410);
		w2.setText("dhtmlxWindow");	
		w2.button("close").disable();
		w2.setText('AA Error');
        dhxWins.window("w2").attachObject("main");
 }

We have not reproduced the problem locally. Please check attached sample
window.zip (61.1 KB)

Hi Alexandra, I had success reproduce the problem with your sample code. Please check my attached file. Thanks.
window-problem.zip (59.6 KB)

Hi,

try to set the bigger zIndex as follows:

cal1 = new dhtmlxCalendarObject(‘calInput1’);
cal1.setSkin(“dhx_skyblue”)
cal1.parent.style.zIndex = 200;

cal2 = new dhtmlxCalendarObject(‘calInput2’);
cal2.setSkin(“dhx_skyblue”)
cal2.parent.style.zIndex = 200;

This has solved the problem locally.

ok already solved… thanks.