Re: validators binding in T4

2005-08-26 Thread Kent Tong
Mark Lehmacher gmx.de> writes: > "validators=validators:required, pattern=^[\\w\\d]+$" > > Problem is that > org.apache.tapestry.form.validator.ValidatorFactoryImpl.buildValidatorList > is not able to parse a list of validators from this because my regex-pattern > contains a [ character. In add

Re: validators binding in T4

2005-08-26 Thread Paul Ferraro
Until then, you can still leverage the 3.0 style by specifying an ognl list to the validators parameter. e.g. ... Howard Lewis Ship wrote: In beta-5, due shortly, you will be able to define your pattern validator as a managed , and then reference the bean in your list as $name. li

Re: validators binding in T4

2005-08-26 Thread Howard Lewis Ship
In beta-5, due shortly, you will be able to define your pattern validator as a managed , and then reference the bean in your list as $name. literal: ^[\\w\\d]+$ ... On 8/26/05, Mark Lehmacher <[EMAIL PROTECTED]> wrote: > Hello list, > > I run into issues when I want to use seve