I have a form which has a "save" (<html:submit ...) and "continue" (<html:cancel ...) button. The "save" should validate and process the data in the form. The "continue" button should go to the next page, skipping any validation and processing. I have been using the validator plugin, with all of my validation in the validation.xml file. My form bean extends ValidatorForm and my validate function is commented out (is not overriding the parent). This validates great but will not allow me to skip validation on "continue". I have searched Google for conditional validation and only found how to conditionally validate "required" fields based upon the values of other fields. Any ideas or suggestions? Thanks. Robert