If I wanted to display the actual value that is causing a
Struts validator to fail, how would I do this? For example, if I use the depends="email" rule, and I have:
errors.email={0} is not a valid email address
as my error message resource, how can I pass the actual text value into the message?
<arg0 key=" ...? " resource="false"/> but what should go into to key? ${field.value} ?
Thanks.