Completed
Last Updated: 31 Mar 2015 06:19 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 04 Mar 2015 12:23
Category:
Type: Bug Report
0
FIX. RadDropDownList - Unable to select items beyond the 5th item when accessing the Popup property
To reprodiuce:

public Form1()
{
    InitializeComponent();

    for (int i = 0; i < 50; i++)
    {
        this.radDropDownList1.Items.Add("Item" + i);
    }
    this.radDropDownList1.DefaultItemsCountInDropDown = 25;
    this.radDropDownList1.PopupClosing += radDropDownList1_PopupClosing;
}

private void radDropDownList1_PopupClosing(object sender, Telerik.WinControls.UI.RadPopupClosingEventArgs args)
{
    RadDropDownListElement ddle = sender as RadDropDownListElement;
    Point relativeMousePositionInPopup = ddle.Popup.ElementTree.Control.PointToClient(Control.MousePosition);
}


Workaround: access the RadDropDownListElement.PopupForm instead of the RadDropDownListElement.Popup.
Attached Files:
0 comments