thanks Manish.
<bean:define id="userProp" name="addUserForm"
property="userPropositions" />
<html:select property="selProposition" multiple="true"
name="addUserForm" onchange="showProposition()">
<html:iterate name="addUserForm" property="userProp"
id="userAssociatedPropositions">
<html

resent name="addUserForm" parameter="Proposition">
<html

ptions collection="userProp" labelProperty="label"
property="value"/>
</html:select>
Let me know how to use the Parameter in html

resent.
The arraylist that has the values has been converted into a string[]
that struts supports fro multiple selection.
i found in one of the mail archieves in google that
<bean:define id="userProp" name="addUserForm"
property="userPropositions" />
<html:select property="selProposition" multiple="true"
name="addUserForm" onchange="showProposition()">
<html

ptions collection="userProp" labelProperty="label"
property="value"/>
</html:select>
will work for multiple selection.
kindly help.
thanks in advance.
Vasu
Manish Pandit wrote:
> You could use <logic:iterator> or <html:select> plus <html
ptions> to
> iterate over the arraylist in your JSP.
>
> -cheers,
> Manish
>
>
> Vasu wrote:
> > Hi
> >
> > Iam using struts framework for our project. I have a jsp in which
> > multiple selection can be made in a list box. While submitting, the
> > action class is called that perfomrs some operations.
> >
> > The list box is populated from database. The multiple selected values
> > are put into an arraylist in the action class.
> >
> > is there anything i have to do in struts-config.xml to ahndle
> > selections?
> >
> > Please reply.
> >
> > Thanks & Regards,
> > Vasu