Completed
Last Updated: 22 Nov 2017 08:46 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 14 Nov 2017 13:24
Category:
Type: Bug Report
3
FIX. RadDropDownList - keyboard search always starts from the second item
To reproduce: Add a RadDropDownList and use the following code snippet:

            this.radDropDownList1.DropDownStyle = RadDropDownStyle.DropDownList;
            this.radDropDownList1.Items.Add("ABC");
            this.radDropDownList1.Items.Add("BCA");
            this.radDropDownList1.Items.Add("ADE");
            this.radDropDownList1.Items.Add("DEF");
            this.radDropDownList1.Items.Add("DHJ");

Initially, no item is selected. If you press "A", the first item "ABC" is supposed to be selected. However, RadDropDownList selects item "ADE".

0 comments