In Development
Last Updated: 25 Jul 2024 08:27 by ADMIN
Scheduled for 2024 Q3 (August)
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 15 Sep 2015 14:50
Category:
Type: Bug Report
7
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