i have a form within a Window.
If the drop down ist open then it stays opend after the window is closed.
Any idear for a workaround
closeAll() also dont help…
With best regards,
Uwe Janke
i have a form within a Window.
If the drop down ist open then it stays opend after the window is closed.
Any idear for a workaround
closeAll() also dont help…
With best regards,
Uwe Janke
You may try to call closeAll from onClose handler
win.attachEvent("onClose",function(){
var combo = yourForm.getCombo("comboId");
combo.closeAll()
win.hide();
});