How to limit number of displayed items in html.dropdownlist?

Posted by Remnant on Stack Overflow See other posts from Stack Overflow or by Remnant
Published on 2010-05-30T19:05:05Z Indexed on 2010/05/30 19:12 UTC
Read the original article Hit count: 232

Filed under:
|
|
|

I have a html.dropdownlist on my webpage as follows:

<%=Html.DropDownList("MyDropDown", Model.Data, new { @class = "dropdown"})%>

I am populating the dropdown with ~80 items.

The issue is that when I click the dropdown the list of items is rendered from the top of the screen to the bottom of the screen.

How can I set up the dropdownlist so that it only displays a maximum of 20 items when the dropdown menu is clicked (i.e. user needs to scroll down to see items 21 - 80)?

I was anticipating (!) that there would be a html.dropdownlist property to control the number of displayed items that would allow something like the following e.g.:

<% =Html.DropDownList("MyDropDown", Model.Data, new { @class = "dropdown", rows ="20"}) %>

From research I have been doing on the msdn website it appears that there is no such property and that each browser has its own rules of how many items are displayed in a dropdownlist (?).

I am using IE6 and IE7.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about mvc