I have a server dropdownlist in an Ajax updatepanel. When I use the mouse to click on an item it fires the postback but when I click the up/down arrow to change entries, this is not firing. What could be reason?
|
feedback
|
|
Try this:
With onKeyUp="this.blur();" the control will lose focus when a key is unpressed, and that will trigger the onChange event. | |||
feedback
|
|
Not sure this is what you are after but it may help. Try setting the 'AutoPostBack' property of the DropDownList control to 'true'.
| |||
|
feedback
|
|
I think you have to leave the control if you are using the keyboard in order to fire the event. | |||
|
feedback
|
|
If you want it to work with the arrow keys, you should use the client side event, | ||||
feedback
|