Completed
Last Updated: 12 Sep 2013 06:17 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 12 Sep 2013 06:17
Category:
Type: Bug Report
1
FIX. RadDropDownList - Keypress is not recognized if the arrow button is pressed
To reproduce:
Create a RadDropDownList with RadDropDownStyle - DropDownList. Fill it with items. Run the project and open the list by clicking the arrow. Try to search for some item without clicking anywhere else.
Workaround:
private void downList_PopupOpened(object sender, EventArgs e)
{
    this.downList.DropDownListElement.EditableElement.Focus();
}
0 comments