Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Andrew on Dec 18, 2007 12:28
open dhtmlx forum
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");
    ....
})