Javascript to help control refreshing data in a different frame.
parent.frames['frame name here'].location.reload();
Refresh a specific frame on a split pane report after an add / update / delete on a form.
Example for this will be you may have a split pane set up where in the left pane there is a report which holds a link that opens a form in the right pane. After submitting data on that form in the right pane, you may just want to refresh the report in the left pane. One easy way to accomplish this is to add some post run javascript on the form.
Suppose you wanted to refresh the report in the left pane after a form add action in the right pane, you would add the following to the "@@formmode@@" == "add" section:
parent.frames['__splitPane1'].location.reload();
Working example:
if ( "@@formmode@@" == "add" ) {
//Add code here for adds
parent.frames['__splitPane1'].location.reload();
}
else if ( "@@formmode@@" == "update" ) {
//Add code here for update
}
else if ( "@@formmode@@" == "delete" ) {
//Add code here for deletes
}