Validator, HELP

2003-01-31 Thread m . akula
Looks like field.startDate=Date is missing in the resource bundle. --Mahender Hi All, Got a question about configuring the validator. I have a date field that I would like validated only if it has been entered. I have the following entry in the validation.xml field

Re: Validator, HELP

2003-01-31 Thread Swish
Oops sorry if I wasn't clear. The actual message returned is correct, Start date is not a date The actual error message is ok, I just don't want the validator to look at the field if it's null. I went so far as to make sure that the get method returns a null if the length of the field is

Validator, HELP

2003-01-30 Thread Swish
Hi All, Got a question about configuring the validator. I have a date field that I would like validated only if it has been entered. I have the following entry in the validation.xml field property=startDate depends=date arg0 key=field.startDate/ var

RE: Validator, HELP

2003-01-30 Thread Todd Pierce
This might help: http://home.earthlink.net/~dwinterfeldt/ -Original Message- From: Swish [mailto:[EMAIL PROTECTED]] Sent: Friday, 31 January 2003 10:28 AM To: [EMAIL PROTECTED] Subject: Validator, HELP Hi All, Got a question about configuring the validator. I have a date field

RE: Validator, HELP

2003-01-30 Thread Swish
PROTECTED] Subject: Validator, HELP Hi All, Got a question about configuring the validator. I have a date field that I would like validated only if it has been entered. I have the following entry in the validation.xml datePatternStrict MM/dd/ As it stands, if the user does not enter a date

RE: Validator help

2002-04-20 Thread Galbreath, Mark
To: Struts Users Mailing List Subject: Validator help Hi, I'm having really hard time to figure out why the validator is not working. Here is the summary what i did: 1. I tried to produce debug/error messages for org.apache.commons.validator but no luck. (see thread How can i turn on debug

RE: Validator help

2002-04-20 Thread Parmar, Dipakkumar
Mark, you are right about struts validation. Please post your code. Thanks Deepak -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 20, 2002 9:25 AM To: 'Struts Users Mailing List' Subject: RE: Validator help I found using the Struts validation

RE: Validator help

2002-04-20 Thread Jack Zakarian
Mark I'm interested. Jack [EMAIL PROTECTED] -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 20, 2002 8:25 AM To: 'Struts Users Mailing List' Subject: RE: Validator help I found using the Struts validation cumbersome and unpredictable, so I

RE: Validator help

2002-04-20 Thread Galbreath, Mark
No problemo. I'm in the #%$@$#!! office on a Saturday again, anyway. :-( -Original Message- From: Jack Zakarian [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 20, 2002 2:43 PM To: Struts Users Mailing List Subject: RE: Validator help Sorry Mark I sent my request before I read

Validator help

2002-04-19 Thread Parmar, Dipakkumar
Hi, I'm having really hard time to figure out why the validator is not working. Here is the summary what i did: 1. I tried to produce debug/error messages for org.apache.commons.validator but no luck. (see thread How can i turn on debug for org.apache.commons.validator) 2. I override

RE: Validator help

2002-04-19 Thread Honman Lee
I am having issues with my validation too. Did you initialize the validator in the web.xml file? -Original Message- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 2:48 PM To: Struts Users Mailing List Subject: Validator help Hi, I'm having really

RE: Validator help

2002-04-19 Thread Parmar, Dipakkumar
:58 PM To: Struts Users Mailing List Subject: RE: Validator help I am having issues with my validation too. Did you initialize the validator in the web.xml file? -Original Message- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 2:48 PM To: Struts Users

RE: Validator help

2002-04-19 Thread Honman Lee
/param-value /init-param load-on-startup2/load-on-startup /servlet -Original Message- From: Parmar, Dipakkumar [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 3:06 PM To: Struts Users Mailing List Subject:RE: Validator help I don't think so i need

Re: Struts Validator help

2002-02-25 Thread David Winterfeldt
It is keyed on the property, not the message resource key. So it would be the same as the property for you html:text tag. html:errors property=email / This would represent getEmail/setEmail. David --- [EMAIL PROTECTED] wrote: Hi, I'm new to Struts and Struts Validator. I have been able