Hello,
I’m having a problem with the attachtabbar in IE to a DHXwindow, this is my code:
function eventPopup(id,startDateFinal,endDateFinal,employee){
var dhxWins= new dhtmlXWindows();
dhxWins.zIndexStep=“10000”;
var win = dhxWins.createWindow(“eventwindow”, 0, 0, 550, 450);
dhxWins.setSkin(“dhx_black”);
dhxWins.window(“eventwindow”).setModal(true);
dhxWins.window(“eventwindow”).center();
dhxWins.window(“eventwindow”).setText(“Nieuwe afspraak”);
var dhxTabbar = dhxWins.window(“eventwindow”).attachTabbar();
dhxTabbar.setSkin(“dhx_black”);
dhxTabbar.setImagePath(“/cmspanel/js/dhtmlx/tabbar/codebase/imgs/”);
dhxTabbar.addTab(“a1”,“Afspraak”,“100px”);
dhxTabbar.addTab(“a2”,“Uitnodigen”,“100px”);
dhxTabbar.addTab(“a3”,“Herhalen”,“100px”);
dhxTabbar.setTabActive(“a1”);
dhxTabbar.setHrefMode(“iframes”);
dhxTabbar.setContentHref(“a1”,“/cmspanel/frames/?eventwindow&tab=appointment&eid=”+id+“&sdate=”+startDateFinal+“&edate=”+endDateFinal+“&employee=”+employee);
dhxTabbar.setContentHref(“a2”,“/cmspanel/frames/?eventwindow&tab=invite&eid=”+id+“&sdate=”+startDateFinal+“&edate=”+endDateFinal+“&employee=”+employee);
dhxTabbar.setContentHref(“a3”,“/cmspanel/frames/?eventwindow&tab=recurring&eid=”+id+“&sdate=”+startDateFinal+“&edate=”+endDateFinal+“&employee=”+employee);
}
This code is working perfect in Firefox and in Safari but not in IE, please see the attached screenshot.
Best Regards,
Michiel Klaver