I am using DHTX combo that is inside of DHTX window. When I expend down the combo values and close thw window before I collapsing the combo - pulled down div with combo values is still appeared on FF. Also it has a same problem when I drag window within page - div with values is still on same place. It works fine on IE6. Any patches, recomendations available?
Thanks.
You can try to use the following approach to close both combo and window:
var dhxWins = new dhtmlXWindows();
…
dhxWins.attachEvent(“onClose”,function(){
combo.closeAll();
return true
})
Interesting, it works now. All combos are collapsing on closing window… However I got now a similar problem with combo expanded: when I drag the window - expanded div stays on same place and does not move with all other elements, neither collapsing.<?xml:namespace prefix = o ns = “urn:schemas-microsoft-com:office:office” /><o:p></o:p>
You can also try to use the same approach when window is moved:
dhxWins.attachEvent(“onMoveFinish”,function(){
combo.closeAll();
return true
})