The postProcessURL parameter specifies the name of the JSP to call during post processing of the web form in edit mode. The following examples show how to invoke the emxForm.jsp with postProcessURL:
If you specify both a postProcessURL and postProcessJPO, the postProcessURL executes first followed by the postProcessJPO. When the standard edit process completes, the edit display frame formEditDisplay is submitted to a hidden target frame with the post process URL. The post process JSP has the following input parameters:
To update or interact with any objects, obtain the context from the request in the post process JSP using this code: context = (matrix.db.Context)request.getAttribute("context"); See Pre-Process URL for an Editable Form Page for code samples that retrieve request parameters and field information. |