Completed
Last Updated: 26 Apr 2019 12:37 by ADMIN
Release R3 2018
ADMIN
Dimitar
Created on: 29 Aug 2018 11:20
Category:
Type: Bug Report
0
FIX. RadDropDownList - the autocomplete drop down is not re-positioned when there is a large number of items
To reproduce:
- Add 500 items.
Then set the following::
radDropDownList1.DropDownListElement.AutoCompleteSuggest.DropDownList.DefaultItemsCountInDropDown = 500;

Workaround:
radDropDownList1.DropDownListElement.AutoCompleteSuggest = new MySuggestHelper(this.radDropDownList1.DropDownListElement);

class MySuggestHelper : AutoCompleteSuggestHelper
{
    public MySuggestHelper(RadDropDownListElement owner ) : base (owner)
    {
    }
    public override void ShowDropDownList()
    {
        base.ShowDropDownList();
        this.DropDownList.Popup.UpdateLocation();
    }
}
2 comments
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 26 Apr 2019 12:37
Hello, Ben,    

The issue is with status completed. The fix was introduced in R3 2018. Are you still experiencing any undesired behavior? It would be greatly appreciated if you can provide additional information and detailed steps how to reproduce the problem. Thus, we would be able to make an adequate analysis of the precise case and assist you further. Thank you in advance.

I am looking forward to your reply.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Ben
Posted on: 12 Apr 2019 05:16
Hi, where is this at? The solution provided still has not fixed the issue.