Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dropdownlist

Status
Not open for further replies.

nvegamarrero

Programmer
Apr 22, 2005
6
US
Hello:
Somebody know how can I show an horizontal scroll in a dropdownlist??
Thank
Nelson
 
There is no way to add a horizontal scroll bar to a dropdownlist. The drop down list will size itself to the largest item in the list weather it is data bound, or you add items to the colletions class. Just remember not to change the size of the dropdownlist, or you can possibly truncate the items.

Hope this helps.

Jim
 

This can hide your vertical scroll while scrolled to the left.
It may be ugly but it scrolls from side to side.
<div style="overflow-y:auto;width:100;height:300;>

<select>
...items ...
</select>
</div>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top