vote up 2 vote down star

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?

flag

44% accept rate

2 Answers

vote up 1 vote down

If you want that level of control, you are left to re-implement drop down lists in javascript. Kinda sucks.

link|flag
vote up -1 vote down

I think you might be looking for the size attribute:

<select size="2">
    <option>1</option>
    <option>2</option>
    <option>3</option>
</select>

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:

'// VB.Net
DropDown.Attributes.Add("size", "2")

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.

link|flag
Bizarrely, doing what you suggest (or putting size="24" in the markup) turns my DropDownList into a ListBox. – Kyralessa Nov 5 '08 at 22:04
2  
There are no separate ListBox and DropDownList controls in HTML, just <select>. If you specify a size attribute then the browser renders a listbox, if not then it renders a dropdown. The DropDownList and ListBox .NET controls both produce a <select>, with or without a size attribute – stevemegson Nov 5 '08 at 22:10

Your Answer

Get an OpenID
or

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