Struts tag <s:submit>
and Struts jQuery tag <sj:submit>
both submit in the same way. I mean, they refresh the page and forward to another to page. But I thought Struts jQuery tag implemented Ajax so the page should not be change while submitting. Am I correct?
I have implemented both tags in form, while submitting both are working same way.
<s:form action="part!list" >
<s:submit action="part" method="list" />
</s:form>
<s:form action="part!list" >
<sj:submit />
</s:form>
If I use <sj:submit>
it works, but I add some struts tag button <s:submit>
in the same form then it doesn't work. So, Struts tag won't work?