Larry Sherrill <larrypsherrill <at> yahoo.com> writes: > In my submit method I loop through the list of Persons > to validate that the favoriteColor is not the choice > "Red". If it is, then I want to mark the corresponding > propertySelection field with a "**" to the right of > the PropertySelection drop down.
The cleanest solution is to upgrade to Tapestry 4 where you can provide a validator to validate your PropertySelection component. If you must stick to tapestry 3, you may add a Delegator component just after your PropertySelection, implement IRender in code. In that code you can perform the check if it's a rewind. -- Author of a book for learning Tapestry (http://www.agileskills2.org/EWDT) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
