Unplanned
Last Updated: 23 Aug 2016 08:31 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 15 Sep 2015 14:50
Category:
Type: Bug Report
5
FIX. RadDropDownList - the control popup is not closed automatically when the auto-complete popup is shown, hence both popups overlap
Please refer to the attached gif file.

Workaround: close manually the drop down list when the auto-complete popup is shown:

    this.radDropDownList1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    this.radDropDownList1.DropDownListElement.AutoCompleteSuggest.DropDownList.PopupOpened+=DropDownList_PopupOpened;

private void DropDownList_PopupOpened(object sender, EventArgs e)
{
    this.radDropDownList1.CloseDropDown();
}
Attached Files:
0 comments