Re: Creating array of Validators with String

2006-03-31 Thread Eric Schneider
>http://svn.apache.org/repos/asf/jakarta/tapestry/branches/4.0/framework/src/java/org/apache/tapestry/form/validator/ValidatorFactoryImpl.java Thank you! Exactly what I was looking for. Cheers, e. On 3/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Also look at: > > http://svn.apache.org

Re: Creating array of Validators with String

2006-03-30 Thread andyhot
Also look at: http://svn.apache.org/repos/asf/jakarta/tapestry/branches/4.0/framework/src/java/org/apache/tapestry/form/validator/ValidatorFactoryImpl.java >From Mike Snare <[EMAIL PROTECTED]>: > If the validation is specified in your xml, parse the data into data > structures that make sense to

Re: Creating array of Validators with String

2006-03-30 Thread Mike Snare
If the validation is specified in your xml, parse the data into data structures that make sense to you, then use them to create one or more of the validators in the org.apache.tapestry.valid package. Will that work? -Mike On 3/30/06, Eric Schneider <[EMAIL PROTECTED]> wrote: > Hi, > > I have a g

Creating array of Validators with String

2006-03-30 Thread Eric Schneider
Hi, I have a generic editor page that iterates over a dynamic list of properties (driven by an xml file). I'd like to make use of the built in validator stuff, but I'm unclear about how to create a collection of Validator objects from a string. I'm assuming there is some convenience in the frame