Recently I had the need to put a RadComboBox on a page to display a drop down and noticed something quirky which made me have to rethink my layout to work around this odd issue.
If I place a RadComboBox as follows, everything works normal:
But the second I add "float: left;" as a css style as so then the RadComboBox behaves a little differently:
What normally happens is you are able to highlight and/or click anywhere on the combobox and your items will drop down so you can select something. With float: left; enabled in the div tag all of a sudden I can no longer drop down the combobox if I highlight and click on the image area of the combobox. That is the little down-arrow icon. I can highlight/click in the text area, but the area off to the right displaying the arrow icon becomes useless.
The only solution I have found to work is to avoid this scenario and rethink the layout.
Is anyone else able to replicate this quirk? I am using ver: 2010.3.1109.40
Thanks!
If I place a RadComboBox as follows, everything works normal:
<
div
>
<
telerik:RadComboBox
ID
=
"ComboBox"
runat
=
"server"
>
... items
</
telerik:RadComboBox
>
</
div
>
But the second I add "float: left;" as a css style as so then the RadComboBox behaves a little differently:
<
div
style
=
"float: left;"
>
<
telerik:RadComboBox
ID
=
"ComboBox"
runat
=
"server"
>
... items
</
telerik:RadComboBox
>
</
div
>
What normally happens is you are able to highlight and/or click anywhere on the combobox and your items will drop down so you can select something. With float: left; enabled in the div tag all of a sudden I can no longer drop down the combobox if I highlight and click on the image area of the combobox. That is the little down-arrow icon. I can highlight/click in the text area, but the area off to the right displaying the arrow icon becomes useless.
The only solution I have found to work is to avoid this scenario and rethink the layout.
Is anyone else able to replicate this quirk? I am using ver: 2010.3.1109.40
Thanks!