Hi,
I've looked for this in a lot of places and can't seem to find a solution. I'm trying to do a form with a table that has a dynamic number of rows each with an input radio and input text field which are indexed properties.
Unfortunately I'm on
JSP 2.0 and don't currently have the option to switch to 2.1 and upgrade my EL version.
My question is how do you do a for loop or a c:forEach so that these input fields with have a value attribute that is either:
1. indexed like value="#{myBean.values[index].type}"
OR as part of a Collection like
2. c:forEach var='nxt' items='#{myBean.values}'
and then value='#{nxt.type}'
or something to that effect?
Any insight would be greatly appreciated.
Amarish