I need some help with finding the correct syntax for the <html
ptions> tag.
Form Bean Code:
public class ActivityForm extends ActionForm {
private Collection departments;
private Collection categories;
...
public Collection getDepartments() {
return departments;
}
public void setDepartments(Collection departments) {
this.departments = departments;
}
JSP Code:
...
<tr>
<th class="required">Department:</th>
<td class="input">
<html:select styleClass="input" alt="Department"
property="departmentId" size="1">
<html
ption value="">--------------</html
ption>
<html
ptions property="departments"
labelProperty="departmentLabel"/>
</html:select>
</td>
</tr>
...
The runtime error I receive is:
javax.servlet.jsp.JspException: No getter method available for property departmentLabel for bean under name null
In fact, the departments Collection is made up of department records and the department records DO have a getter method for departmentLabel.
Can anyone tell me the correct syntax?
Thanks,