I'm migrating an application from Struts1 to Struts2.
In Struts 1, we have <html:cancel>
tag to bypass the form bean validate()
method upon clicking.
But in Struts 2, I'm not aware of any similar tag available and I have a validate method in my Action
class which automatically gets executed if you press the submit button.
So, how do I migrate the below tag to Struts2?
<html:cancel property="cancel" value="No"/>