Completed
Last Updated: 11 Feb 2014 16:06 by ADMIN
ADMIN
Stefan
Created on: 18 Jun 2013 02:54
Category:
Type: Bug Report
3
FIX. RadDropDownList - calling the Focus method of the control does not allow changing the items with the keyboard in DropDownList mode
To reproduce:
- Set DropDownStyle to DropDownList
- Tab to the control and attempt to change the items with up/down arrow keys

Workaround:
        void radDropDownList1_GotFocus(object sender, EventArgs e)
        {
            radDropDownList1.DropDownListElement.Focus();
        }
0 comments