For the code below, I want to list for each employee, the name , the email and the options of countries. I am using the following code to use the nested beans in
Struts but the comboBox is not appearing. Does somebody know how I can insert a combo inside a nested bean ?? . The comboBox is supposed to load name of countries as shown below.....
<nested:iterate property="employees">
Employee: <nested:text property="empName"/>
E-mail: <nested:text property="email"/><br/>
Country :<html:select name="country" property="Name" indexed="true">
<html
ptions collection="country" property="value"/>
</html:select>
</nested:iterate>
Thanks,....