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?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

Try this:

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" onKeyUp="this.blur();">

With onKeyUp="this.blur();" the control will lose focus when a key is unpressed, and that will trigger the onChange event.

link|improve this answer
however nice this solution may be, you are killing functionality, if you have a list with 10 items, and the user decides to navigate by keyboard, he exits the dropdownlist every time he clicks up or down. is it possible to do onKeyUp="this.blur();this.focus();" ? – Sander Aug 4 '09 at 12:07
feedback

Not sure this is what you are after but it may help.

Try setting the 'AutoPostBack' property of the DropDownList control to 'true'.

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true">
</asp:DropDownList>
link|improve this answer
Thanks! That worked for me! – John Oct 26 '11 at 13:37
feedback

I think you have to leave the control if you are using the keyboard in order to fire the event.

link|improve this answer
is there anyway to have this fired right on the up/down arrow? – leora Oct 26 '08 at 23:56
feedback

If you want it to work with the arrow keys, you should use the client side event, onKeyDown.

link|improve this answer
can you give me an example of how this would work . . and how this can then postback to the server for actions – leora Oct 27 '08 at 1:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.