Unplanned
Last Updated: 29 Mar 2016 12:27 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 Aug 2013 11:36
Category:
Type: Bug Report
3
FIX. RadDropDownList - the LostFocus event fires after PopupClosed and before SelectedIndexChanging events
Description: LostFocus event for the RadDropDownList fires after PopupClosed and before SelectedIndexChanging events no matter that the user have not leave the control yet.

To reproduce:
- add a RadDropDownList with items
- subscribe for the LostFocus event
- open the drop down list and close it: the LostFocus event fires

Workaround:
Use RadDropDownList Leave event:

this.radDropDownList1.Leave += radDropDownList1_Leave;
0 comments