I just downloaded the dhtmlx suite and it looks great. however, when I create a combox it always appears on the next line instead of on the line on which i declared it (ie as if a BR-tag was placed immediately before it). This happens in both Firefox 2 and IE7, whether I create it from an existing SELECT or by pure javascript.
I would like the combobox to appear appear after its label, on the same line without a newline in between. Any ideas?
Thanks,
Dante
This is caused by used DOM model, you can switch it to inline mode by adding next css class
.dhx_combo_box{
display:inline;
}
but it will work correctly only in IE, FF doesn’t respect sizes for inline elements, so the combo will look pretty strange.