Madhavan Thirumalai <mad <at> letsgaggle.com> writes: > I got my own validator to fire if I disabled clientScripting. But ideally, > I'd like the best of both worlds. I'd like my validators to fire after the > Tapestry generated validators have had their shot. If I enable > clientScripting my validator doesn't fire. Any way to do this?
Then you should implmenet the Validator interface and the FormComponentContributor interface. In particular, in your renderContribution(), you can make use of the FormComponentContributorContext argument passed to you to add your validation script by calling its addSubmitListener() method. -- Author of e-book for learning Tapestry (www.agile --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
