RE: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-23 Thread Steve Armstrong
i l l i a m b o y d [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003 10:00 PM To: Struts Users Mailing List Subject: Help: ActionError - html:errors / does not expand the {0} placeholder hello all, developing on w98 with tomcat 3.2.24, mysql 3.23.36, struts 1.0.2, jdk 1.3.1., servlet

RE: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-23 Thread Robert Taylor
. cheers, will - Original Message - From: w i l l i a m b o y d [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 7:14 AM Subject: Re: Help: ActionError - html:errors / does not expand the {0} placeholder thanks paul, you are right

Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread w i l l i a m b o y d
hello all, developing on w98 with tomcat 3.2.24, mysql 3.23.36, struts 1.0.2, jdk 1.3.1., servlet 2.2. will be deploying on basically similar setup; but deployment os is xp. i got a jsp page that has a choice box that allows multiple choices. i set a validation rule in my action form's validate

Re: Help: ActionError - html:errors / does not expand the {0}placeholder

2003-02-22 Thread Jeff Kyser
So what does your validation.xml file look like w.r.t. the rule in question? -jeff On Saturday, February 22, 2003, at 09:00 PM, w i l l i a m b o y d wrote: hello all, developing on w98 with tomcat 3.2.24, mysql 3.23.36, struts 1.0.2, jdk 1.3.1., servlet 2.2. will be deploying on basically

Re: Help: ActionError - html:errors / does not expand the {0}placeholder

2003-02-22 Thread Jeff Kyser
For example, on my loginForm, where field userName depends on the required rule: form-validation formset form name=loginForm field property=userName depends=required arg0 key=loginForm.username.displayname/ /field

Re: Help: ActionError - html:errors / does not expand the {0}placeholder

2003-02-22 Thread w i l l i a m b o y d
constructor isn't being included in the error message that is being output. - Original Message - From: Jeff Kyser [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 3:06 AM Subject: Re: Help: ActionError - html:errors / does not expand the {0

Re: Help: ActionError - html:errors / does not expand the{0}placeholder

2003-02-22 Thread Jeff Kyser
/ does not expand the {0}placeholder So what does your validation.xml file look like w.r.t. the rule in question? -jeff On Saturday, February 22, 2003, at 09:00 PM, w i l l i a m b o y d wrote: hello all, developing on w98 with tomcat 3.2.24, mysql 3.23.36, struts 1.0.2, jdk 1.3.1., servlet 2.2

Re: Help: ActionError - html:errors / does not expand the{0}placeholder

2003-02-22 Thread w i l l i a m b o y d
!!! - Original Message - From: Jeff Kyser [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 3:59 AM Subject: Re: Help: ActionError - html:errors / does not expand the{0}placeholder Sorry, Will, I missed the 1.0.2 reference. Have only worked

Re: Help: ActionError - html:errors / does not expand the{0}placeholder

2003-02-22 Thread Chris Trawick
to me and my setup. SHEESH!!! - Original Message - From: Jeff Kyser [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 3:59 AM Subject: Re: Help: ActionError - html:errors / does not expand the{0}placeholder Sorry, Will, I missed

Re: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread David M. Karr
w == w i l l i a m b o y d w writes: w Sorry! Youve selected too many choices for {0}. (what happened to my w apostrophe in You've ?) w here is the appropriate line from my resource bundle: w error.prefs.limit=Sorry! You've selected too many choices for {0}. w

Re: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread w i l l i a m b o y d
/ does not expand the {0} placeholder w == w i l l i a m b o y d w writes: w Sorry! Youve selected too many choices for {0}. (what happened to my w apostrophe in You've ?) w here is the appropriate line from my resource bundle: w error.prefs.limit=Sorry! You've

Re: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread Paul Linden
Your comment about the apostrophe is a clue - it's a special character in the MessageFormat class that's used for quoting. Use two apostrophes to display '. I think you'll find {0} will then be evaluated. And relax - Jeff's response may have been no help to you, but he was trying. And please

Re: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread w i l l i a m b o y d
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 6:40 AM Subject: Re: Help: ActionError - html:errors / does not expand the {0} placeholder Your comment about the apostrophe is a clue - it's a special character in the MessageFormat class that's used

Re: Help: ActionError - html:errors / does not expand the {0} placeholder

2003-02-22 Thread w i l l i a m b o y d
- From: w i l l i a m b o y d [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 7:14 AM Subject: Re: Help: ActionError - html:errors / does not expand the {0} placeholder thanks paul, you are right. for what it's worth, i'd already solved my