> Why does the following render as a box containing text (you know what I
> mean - where you can select multiple items) rather than a drop down menu ?
> 
>  <bean:define id="countryList" property="countryList" name="SearchForm"/>
>      <html:select size="10" property="countryList">
>      <html:options collection="countryList" labelProperty="displayName"
> property="id"/>
>             </html:select>

You gave it a size of 10 so it makes a scrolling list with a size of
10 versus a drop-down menu (size would be '1').

To enable multiple selection, add into the html:select tag
'multiple"anything"', to disable remove or set 'multiple=""'.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to