Hi friends,
I have to validate a combo box that should take atleast one value if not I have to display a message to select one option.
This is xyz.jsp page:
<html:select property="userType">
<html
ptions collection="userTypeList" property="id" labelProperty="userType"/><br>
</html:select>
In validation.xml file I gave
<form name="userForm">
<field property="userType" depends="required">
<arg key="userForm.userType" />
</field>
</form>
But it's not working.any know where I am wrong.