You could pass your own implementation of ValidationTracker to the form.

<t:form defaultTracker="myTracker" ...>
   ...
</t:form>


public ValidationTracker getMyTracker() {
   return new ValidationTrackerImpl() {
      public void recordError(Field field, String errorMessage) { 
         flagError(field); // TODO: implement this
         super.recordError(field, errorMessage);
      }
   }
}




--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/onValidate-get-list-of-fields-containing-validation-errors-tp5716549p5716573.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to