Set a length of a combo

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
M

Mark Goldin

Is it possible to preset a length of a combo box when it does not have any
items yet?

Thanks
 
Hi Mark,

First, FP does not support a combo box. A combo box allows you to type into
the text area of the control.

If by length you mean the height of the drop down when the down arrow is
selected then I don't believe it does.
 
When Select does not have any items it is very narrow.
I'd like to have it as wide as it would be with some
items. Blanks are no good.
 
You can use style to set the width regardless of the content:

<select name="mySelect" style="width:250px">
Whatever options you have
</select>

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 
Back
Top