When a radComboBox has many items (over 100) the Screen boundary detection is not working properly when the screen is scrolled far. The combobox will always open upwards despite being at the top of the screen. Also the list will open past the top of the screen forcing the user to scroll up to see the list.
Is there any resolution to this issue?
ASPX
C# Page_Load
Thanks
Is there any resolution to this issue?
ASPX
<
div
style
=
"margin:1000px 0;"
>
<
telerik:RadComboBox
runat
=
"server"
ID
=
"combo1"
>
</
telerik:RadComboBox
>
</
div
>
C# Page_Load
for
(
int
i = 0; i < 100; i++)
{
combo1.Items.Add(
new
RadComboBoxItem(
"Text"
+ i, i.ToString()));
}
Thanks