I'm trying to using the html:radio tag with the indexed property. I am able to display the radio buttons as I wish, but am confused as to how I should set up the form to receive the values.
This is how I've coded the JSP:
which results in the generated html:
So what should I have in the associated form?
If I leave a variable with the name listMilestone out of the form completly, the I don't get any errors, but I also don't get the value
of the radio button submitted.
If however, I have a String variable listMilestone, the I get errrors like:
The request has a paramter name "listMilestone[1].status", so how do I cater
for that in the form???
How should I declare the variable, and what should the getter and setters look like?
I'm really pulling my hair out with this one!!!
Nigel