Hello,
Good Morning!
We migrated our application recently to
struts 2.5.10.1, now I see a problem with one of the JSP which is not
submitting the form (not reaching action class). Please help me out.
*here is my struts.xml configuration for the same:*
<action name="correctionapplyFunding"
class="com.fund.action.CorrectionsAction" method="applyFund">
<result name="reFunding">/WEB-INF/jsps/q6/Q6New.jsp</result>
</action>
*Action class method:*
public String applyFund() throws Exception {
.........
......
return "refunding";
}
*jsp coding:*
<s:submit name="submit" id="applyFundingButton"
value="ReApplyFunding"
class="pure-button pure-button-primary"
action="correctionapplyFunding">
</s:submit>
Thanks
Sharmila