Posted By:
sam_aggarwal
Posted On:
Monday, July 21, 2003 09:20 AM
I have a bean(myBean) which has 3 fields Name,dept,indicator
(all strings).
myBean is stored in a ArrayList which is a property in my ActionForm.
In the Jsp I show multiple rows of this ArrayList using iterate tag.
Based on the value of indicator(Y/N) for each row a blank checkbox,Name & dept is displayed.
How do I pass the value of checkboxes(checked or unchecked selected by user) for each row back to my Action class for processing.
Thanks.