In ASP.NET, a ListBox has a Rows attribute I can set to say how many rows to show. A DropDownList, though, doesn't. Is there any way I can set the maximum number of rows a DropDownList should display? Code? Markup? CSS?
|
|
|
||
|
|
|
|
If you want that level of control, you are left to re-implement drop down lists in javascript. Kinda sucks. |
||
|
|
|
|
I think you might be looking for the size attribute:
Updated Of course, it looks like Microsoft left out that attribute on the DropDownList control. You'll need to add the attribute yourself in the code:
Updated Again Ok, I see what they did. Both the ListBox and DropDownList controls use the select tag to render in HTML. In the end I don't believe you can control the height of the dropdown box like you're asking for. Its rendering would be controlled by the browser and is based on things like the window size, screen resolution, number of items in the list, the need to scroll, etc. |
||||||
|
