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();
}