dxtmlxcombo: problem when resizing page with combo inside a

When I open the dropdownlist of the combo and start resizing the page, I got the combobox in the correct position but the dropdownlist still on the old position:

























































       
   
 
       










then just open the dropdown list and resize the page.

Problem confirmed, to resolve it just add next line after combo initialization

var z=new dhtmlXCombo(“combo_zone3”,“alfa3”,200);
dhtmlxEvent(window,“resize”,function(){
    z._positList();
});


 



It works quite fine on mozilla firefox, but I get the dropdown repositioned only when the user stop to resize. With IE6 instead I get a very strange behavior… I get a second dropdown list with a “false” in it…

I really forgot about IE, code for both browsers will look as

dhtmlxEvent(window,“resize”,function(){
    z._positList();
    if (_isIE) z._IEFix(true);

});