MVC Html.DropDownList closes prematurely in IE7
- by Jon
I'm using ASP.NET MVC with jquery. I have a couple of dropdownlists. When I select one via mouse click and then scroll down over the items using the mouse/cursor, the list closes before a selection can be made, before the mouse can be clicked. This doesn't happen when I open them and then up/down arrow to select an item. It doesn't happen all of the time, but a lot. Just to try something different, I added a jquery "select" control with hardcoded values (options) and it displays the same behavior. Any ideas?
<%: Html.DropDownList("Accounts", (IEnumerable)ViewData["Accounts"], "-- Select an account --")%
Thank you