I have a Spring Webflow application with Basic CRUD operation of form values.
When User tries to enter invalid input like
String on Numeric field(eg. Budget), we need to validate the form only when user hits submit.
When user hits Cancel, we don't need to validate the form and take the user back to listing page.
For this, as per Spring Webflow documentation I set Validate = false for Cancel flow.
But even then, the form model is getting validated and webflow is throwing Type Mismatch error.
So user couldn't leave the page on hitting cancel and stays on the same page.