I have the following 2 lines of code in a jsp page:
<tr><th align=”left”>Phase :</th><td><html:select multiple=”true” value='””‘ property=”phase” name=”phase”>
<html:optionsCollection label=”AAA” name=”BBB” property=”CCC” value=”DDD” /></html:select><br></td></tr>
I am not clear on what each of the values (AAA, BBB, CCC, DDD) should be for the optionsCollection tag.
In the action class that calls the jsp that has this code I create the arraylist that has the corresponding values the “phase” property. I need to know how to qualify this in the <html:optionsCollection> ? Any help will be appreciated.
Roberto