I have a dropdownlist which has a OnSelectedIndex Changed event set. It fires when the selection changes. The user will use the keyboard to briwse the selection instead of using the mouse to drop down the list to see all the options. However, when the user uses the keyboard to scroll up or down the list, the above event fires on every scroll up or down which I do not want. Is there a way that I can make the control keyboard friendly?
Dropdownlist prob
Collapse
X
-
Tags: None
-
You can use the DropDownClosed Events and inside check for the previous value and the new value
Regards.
Originally posted by bostonian123I have a dropdownlist which has a OnSelectedIndex Changed event set. It fires when the selection changes. The user will use the keyboard to briwse the selection instead of using the mouse to drop down the list to see all the options. However, when the user uses the keyboard to scroll up or down the list, the above event fires on every scroll up or down which I do not want. Is there a way that I can make the control keyboard friendly?
Comment