<%@ page import="oracle.cabo.ui.partial.PartialPageContext"%> <%@ page import="oracle.cabo.ui.partial.PartialPageUtils"%> <%@ page import="oracle.cabo.servlet.ui.partial.PartialPageEventUtils"%> <% PartialPageContext partialPageContext = PartialPageEventUtils.createPartialPageContext(request); if (partialPageContext != null) { // Get the "full page" version of the PartialPageContext PartialPageContext fullPageContext = PartialPageContext.getFullPageContext(partialPageContext); // Set the "full page" version of the PartialPageContext on the RenderingContext. This will cause the // full page to be rendered and then copied from the iframe into the parent window PartialPageUtils.setPartialPageContext(renderingContext, fullPageContext); } %>