Attach dhtmlxTabbar to Accordion
dhtmlxTabbar
b
c
<script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxaccordion.js"></script> <link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxaccordion_dhx_skyblue.css"> <script src="../../codebase/dhtmlxcontainer.js"></script> <script src="../../../dhtmlxTabbar/codebase/dhtmlxtabbar.js"></script> <link rel="stylesheet" type="text/css" href="../../../dhtmlxTabbar/codebase/dhtmlxtabbar.css"> <div id="accordObj" style="position: relative; width: 320px; height: 400px;"></div> <script></script>var dhxAccord; function init() { dhxAccord = new dhtmlXAccordion("accordObj"); dhxAccord.addItem("a1", "dhtmlxTabbar"); dhxAccord.addItem("a2", "b"); dhxAccord.addItem("a3", "c"); dhxAccord.openItem("a1"); //; var tabbar = dhxAccord.cells("a1").attachTabbar(); tabbar.setSkin("dhx_skyblue"); tabbar.setImagePath("../../../dhtmlxTabbar/codebase/imgs/"); tabbar.loadXML("../../../dhtmlxWindows/samples/common/tabbar.xml?" + new Date().getTime()); }