Ao usar o validation quando utilizo algum combo com collection no jsp sem mesmo fazer a validação do combo gera um erro “Failed to obtain specified collection” pois quando tiro o validation passa a funcionar alguem sabe se tenho que alterar alguma coisa?
FORM
<form-bean name="userForm" type="org.apache.struts.validator.DynaValidatorForm">
<form-property name="vo" type="com.stn.easytimesheet.vo.HourVO"/>
<form-property name="userList" type="java.util.Collection"/>
VALIDATION
<form name="userForm">
<field property="vo.password" depends="required">
<arg0 key="user.password"/>
</field>
</form>
JSP
<td>
<html:password property="vo.password" />
</td>
<html:select property="vo.id">
<html:optionsCollection property="userList" label="username" value="id" />
</html:select>
Muito obrigado