Declined
Last Updated: 29 Feb 2016 12:39 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 23 Feb 2016 07:33
Category:
Type: Bug Report
0
FIX. RadDropDownList - autocomplete popup overlaps with the drop down
Workaround:

 public Form1()
 {
     InitializeComponent();   
     this.radDropDownList1.AutoCompleteMode = AutoCompleteMode.Suggest;
     this.radDropDownList1.DropDownListElement.AutoCompleteSuggest.DropDownList.PopupOpened += DropDownList_PopupOpened;
 }

 private void DropDownList_PopupOpened(object sender, EventArgs e)
 {
     this.radDropDownList1.CloseDropDown();
 }

1 comment
ADMIN
Stefan
Posted on: 29 Feb 2016 12:39
The observed behavior with the second popup is by design, hence this request is being Declined. For reference, the MS ComboBox control has the same behavior.

Please use the suggested approach to close the main popup when the auto complete gets opened.

There is also another item regarding the same matter at the following link: http://feedback.telerik.com/Project/154/Feedback/Details/169297

It is with status approved, and if/once it gets considerable demand, we will consider changing the default behavior.