The standard SAVE button on a form updates the BO attributes in the DB.
How can I modify it to, additionally, call a process ?
In the /forms:section of the jsp file, I can see following :
%>
<logic:equal name="EntityFormBean" property="editMode" value="Update" >
<forms:button name="btnSave" src="<%=buttonSrc%>" locale="false" onclick="return checkOnClick_update(this);" />
</logic:equal>
<%
I guess that "checkOnClick_update(this)" is what gets done, but from there on I can't follow it...
Thanks