Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-23 Thread Hasan Turksoy
I agree it is not acceptable but they are not behaving differently. The validator assigned to the component will be invoked before the CommonsValidator is invoked. there is NO custom validator Gary, only custom converters there :).. i've realized that i made a mistake while writing my

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-23 Thread Gary VanMatre
From: Hasan Turksoy [EMAIL PROTECTED] I agree it is not acceptable but they are not behaving differently. The validator assigned to the component will be invoked before the CommonsValidator is invoked. there is NO custom validator Gary, only custom converters there :).. i've realized

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Hasan Turksoy
jsf-ri1.1 contains converter for javax.faces.DateTime class only... not for java.util.Date class you can download and look at jsf-ri-config.xml... in fact, this is not the main problem... i can overcome my issue by adding a converter for java.util.Date... But this doesn't solve the problem

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Craig McClanahan
On 2/22/07, Hasan Turksoy [EMAIL PROTECTED] wrote: jsf-ri1.1 contains converter for javax.faces.DateTime class only... not for java.util.Date class you can download and look at jsf-ri-config.xml... in fact, this is not the main problem... i can overcome my issue by adding a converter for

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Matthias Wessendorf
On 2/22/07, Hasan Turksoy [EMAIL PROTECTED] wrote: jsf-ri1.1 contains converter for javax.faces.DateTime class only... not for java.util.Date class you can download and look at jsf-ri-config.xml... in fact, this is not the main problem... i can overcome my issue by adding a converter for

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Gary VanMatre
From: Matthias Wessendorf [EMAIL PROTECTED] On 2/22/07, Hasan Turksoy wrote: jsf-ri1.1 contains converter for javax.faces.DateTime class only... not for java.util.Date class you can download and look at jsf-ri-config.xml... in fact, this is not the main problem... i can

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Hasan Turksoy
Craig i have created an issue.. you can reach it from herehttp://www.nabble.com/CommonsValidator-doesn%2527t-take-component-converters-into-account%2521-tf3266040.html ... Matthias you are absolutely right :). converters only defined(by id) in config file but they aren't registered for

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-22 Thread Gary VanMatre
From: Hasan Turksoy [EMAIL PROTECTED] jsf-ri1.1 contains converter for javax.faces.DateTime class only... not for java.util.Date class you can download and look at jsf-ri-config.xml... in fact, this is not the main problem... i can overcome my issue by adding a converter for

Re: [shale-validator] CommonsValidator doesn't take component converters into account!

2007-02-21 Thread Gary VanMatre
From: Hasan Turksoy [EMAIL PROTECTED] hi all, Env: jsf1.1, commons-validator1.3.1, shale1.0.4.. i'am trying to put a required validator for my date entering field.. My field has a f:convertDateTime to make conversion between String - java.util.Date. it's like; h:inputtext ...