dhtmlxCalendar in dhtmlxWindow zIndex



我在dhtmlxWindow中附加了一个带有dhtmlxCalendar的页面。日历也被剪掉了。主页:

dhxWins = new dhtmlXWindows();
popupWindow = dhxWins.createWindow("newcontact_win", 0, 0, 330, 270);
popupWindow.center();
popupWindow.attachURL("calendar.html");
Attached page:
formData = [{type: "calendar",  dateFormat: "%d-%M-%Y", serverDateFormat: "%Y-%m-%d", name: "start_date", label: "Calendar", readonly: true, calendarPosition: "right"}];
myForm = new dhtmlXForm("myForm", formData);

您的日历在嵌套最多的iframe中呈现,该iframe的维度比日历小。在这么小的区域内绘制日历在物理上是不可能的。要使日历正常可见,您需要在不使用iframe的情况下构建代码(即不使用attachURL),然后它必须表现良好。

相关内容

  • 没有找到相关文章

最新更新