RE: T5: Validation and message catalogue

2009-02-02 Thread James Sherwood
Hello, NVM I am an idiot. I was forgetting the t: for the id..:( Thanks, --James -Original Message- From: James Sherwood [mailto:jsherw...@rgisolutions.com] Sent: February-02-09 11:58 AM To: 'Tapestry users' Subject: RE: T5: Validation and message catalogue Hello, It is no

RE: T5: Validation and message catalogue

2009-02-02 Thread James Sherwood
AM To: Tapestry users Subject: Re: T5: Validation and message catalogue try double slashed like this ssn-regexp=\\d{3}-\\d{2}-\\d{4} 2009/2/2 James Sherwood > Hello, > > > > I cannot seem to get a textfield validate message to work using regexp and > message catalogs. &g

Re: T5: Validation and message catalogue

2009-02-02 Thread Sven Homburg
try double slashed like this ssn-regexp=\\d{3}-\\d{2}-\\d{4} 2009/2/2 James Sherwood > Hello, > > > > I cannot seem to get a textfield validate message to work using regexp and > message catalogs. > > > > I use Tomcat/Eclipse. > > > > This is my .tml: > > Cell Phone: > > > > > > This is my jav

T5: Validation and message catalogue

2009-02-02 Thread James Sherwood
Hello, I cannot seem to get a textfield validate message to work using regexp and message catalogs. I use Tomcat/Eclipse. This is my .tml: Cell Phone: This is my java: @Validate("regexp") public String getCellPhone(){ return getVisit().getNstuMember().getCellphone(); } publ