Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Stefan Riedel-Seifert on Sep 02, 2009 01:08
open dhtmlx forum
ComboBox misplaced when resizing page

Hi,

i am using the combobox in a existing page, to get a better look&feel:

var z=dhtmlXComboFromSelect("sap-language");z.disable(false);z.readonly(true);

So far so good. the layout of the form fields are realized via nested tables. i cannot change anything there,
becaus it is rendered via a framework.

When resizing the screen, the combox does not get its new position: it remains in its old place.

If tried the solutions in this kb combined with <body onresize="...">, but this doesn't help.

Best regards, Stefan



Answer posted by Alex (support) on Sep 02, 2009 02:19
Please, provide the sample to recreate the issue. Possibly we can help...
Answer posted on Sep 02, 2009 02:23

Thank you,

 

i've attached a picture and a the source (without referenced external js and css)

 

Best regards,

Stefan

Attachments (2)
combo.PNG45.85 Kb
combo.txt12.30 Kb
Answer posted by Alex (support) on Sep 02, 2009 06:44

the issue was reproduced. Please, try to apply the following style - locally it solved the issue:

<style> 
.dhx_combo_box{
  position:static !important;
}
</style>


Answer posted by Stefan on Sep 02, 2009 06:49
... this solves my problem ... thnx, Stefan