html:error and quotation marks...

2004-04-20 Thread bOOyah
Howdy all

I'm using html:error to put an error message next to a form field that 
must not be blank.  But the message is rendered with quotation marks 
around it.  I don't want quotation marks.  Am I doing something I 
shouldn't, or is there any way to turn this behavior off?

My JSP looks like this:

thead
  thhtml:text name=myName property=name size=40//th
  thhtml:errors property=myName //th
/thead
The resulting HTML looks like this:

thead
  thinput type=text name=name size=40 value=/th
  thThe 'Name' field is required/th
/thead
My Form.validate()
==
ActionErrors errors = new ActionErrors();
if (getMyName() == null || getMyName().length  1) {
errors.add(myName, new ActionError(err.name.required, Name);
}
return errors;
My Application.Properties file
==
err.name.required=The '{0}' field is required
Thanks
--
bOOyah
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: html:error and quotation marks...

2004-04-20 Thread bOOyah
Henrique VIECILI wrote:

have you tried changing your ApplicationResources to
err.name.required=The {0} field is required (whitout the quotes') ?
Sorry Henrique...it was my own stupidity all along.  My app was using an 
old Application.properties file that had my message enclosed in 
quotation marks, but I was editing a new one by mistake.  DOH!

Thanks anyway.  And those single quote marks don't cause any problems. 
They work as expected so I left them in.

--
bOOyah
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]