DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23370>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23370 Unable to validate indexed properties Summary: Unable to validate indexed properties Product: Struts Version: 1.1 Final Platform: PC OS/Version: Windows XP Status: NEW Severity: Blocker Priority: Other Component: Validator Framework AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Hi! Got a struts form like this: ============================ <html:text property='<%= "theForm.anArray[" + indexId + "].aDateField " %>' > </html:text> or, if you prefer: <html:text property="theForm.anArray[x].aDateField" > </html:text> where x is a variable, used inside an iteration. which as the following validation configuration: ================================================ <field property="aDateField" indexedListProperty="anArray" depends="required,date" page="55"> <arg0 key="dateField.text"/> <var> <var-name>datePatternStrict</var-name> <var-value>yyyy-MM-dd</var-value> </var> </field> The validator has a strange behevior... sometimes it works, sometimes not: it's like it does not receive the value of that field and says that the date is required while it's there. It does also the same things with integer-type validations... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
