Hi,

Can't seem to find any docs on how to use the <form:options tag completely. I found the following, which is ok for the HTML, what what exactly does the 'code' and the 'name' correspond to?
I guess this is something in the 'countryList'. Would 'countryList' be a list of objects called country containing attributes of 'code' and 'name'? I need to find out how to define the java code to interact with this.

<tr>
<td>Country:</td>
<td>
<form:select path="country">
<form:option value="-" label="--Please Select"/>
<form:options items="${countryList}" itemValue="code" itemLabel="name"/>
</form:select>
</td>
<td></td>
</tr>

Thanks,
Nick..