HI,

I have a form bean that passes an ArrayList which
contains objects of type LineItem. 
With the iterate-tag I iterate through retrieve every
LineItem and I use <c:set .../> to access the 'id'
attribute and other values of each LineItem object to
setup a html form with several checkboxes. (For the
checkboxes I use some selfmade tags.)

<logic:iterate id="lineitem" indexId="index"
name="warehouseForm" scope="session"
property="lineitemlist" >
<c:set var="id" value="${lineitem.id}" /> 
<xv:input-checkbox inputId="${id}" .../>
...
</logic:iterate>

Now I want the values of the attribute 'checked' of
each LineItem inside the ArrayList of the form bean to
be changed according to the users selection in the
html form.
As name for the checkboxes I use the value of the 'id'
attribute of each LineItem. Right now no value changes
inside the bean.

Is it possible to do that?

Thanks a lot for your help.
Matthias

__________________________________
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus

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

Reply via email to