Re: Validation and data display

2004-10-28 Thread Ben Anderson
You can turn off declaritve validation. Then put the validation in your Action.execute and do whatever you want: ActionMessages am = form.validate( mapping, request ); if( am.size() != 0 ){ -Ben Quoting Tate Austin <[EMAIL PROTECTED]>: > I have a page in which I would like to di

Validation and data display

2004-10-28 Thread Tate Austin
I have a page in which I would like to display a list of information before validation goes off and verifies the form contents, other wise the list will never get populated and the page looks awkward. So is there a way to dictate that a validation is triggered only at the time the form is decla