In validation.xml I added the following :
<form-validation>
<formset>
<form name="strategyListForm">
<field
property="itemCount"
depends="required, integer">
<arg0 key="rubis.common.fieldname.itemcount"/>
</field>
</form>
First, don't put *anything* in the form when you submit it to see if the "required" validator is working.
Second, remove the space here: depends="required, integer">
i.e. make it: depends="required,integer">
HTH, Pratik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

