|
Posted by Jukka K. Korpela on 05/04/07 13:17
Scripsit Jake G:
> I was wondering if anyone could tell me what the character limit for a
> select box (list box) is?
There is no limit. Not all characters will always be visible, though. This
depends on the browser and its settings.
> Also, does anyone know how to increase it?
> I am running into an overflow situation.
Relatively modern browsers like IE 7 and Firefox 2 make (by default) the box
as wide as needed for the longest option, so the problem is rather the
_lack_ of a limitation.
You can suggest a visible width for a select element using CSS, e.g.
<style type="text/css">
select { width: 10em; }
</style>
This may work either way: by relaxing a width limitation, or by imposing
one. Anyway, _then_ you have an overflow problem. By default, browsers
truncate the option texts. Due to the specialties of implementation, it
might not be possible to create visible or scrollable overflow.
So instead of asking how to limit the width, you should probably ask how to
cope with a select element with unpredictable varying width.
> Any help would be much appreciated.
You would appreciate help from others more if you gave them the opportunity
to help you, by posting the URL. It might tell us what the real problem is.
My bet is that the option texts are too long and should be shortened, and
quite possibly you shouldn't use a <select> element at all but a list.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
[Back to original message]
|