On 11/10/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> Would I create a bean that is just a collection and then populate that 
> collection with the List I want the user to choose from?  How would I put the 
> list in the jsp?

... and a multibox example, in case you want checkboxes rather than a
select list:

   <c:forEach items="${accountMap}" var="item" >
       <html-el:multibox property="accounts" value="${item.key}"/>
       <c:out value="${item.key}"/> <br/>
    </c:forEach>

(This uses a Map rather than a List, but you get the idea.)

--
Wendy
http://wiki.wsmoak.net/cgi-bin/wiki.pl?StrutsMultiBox

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

Reply via email to