Categories | Question details Back To List | ||
How do I embed a dhtmlxCombo into a dhtmlxToolBar? How do I embed a dhtmlxCombo into a dhtmlxToolBar? Answer posted by Support on Dec 19, 2007 02:16 Currently there is no support for such kind of integration Possible workaround may be in using label button and manual combo initialization in it some.xml ... <LabelButton width="200px"><![CDATA[ <div id="my_cont"></div> ]]></LabelButton> ... toolbar.loadXML("some.xml",function(){ var combo = new dhtmlxCombo("my_cont"); .... }) |