Execute Javascript after *.jspx page rendered

I have a page with controls and a subform with a servlet, rendering a jasper report:
               <af:panelFormLayout id="pfl1" partialTriggers="cbReportHTML">
                <af:subform id="sfRep">
                  <jsp:include page="/jasperservlet" flush="true"/>
                </af:subform>
              </af:panelFormLayout>
I want the page to be rendered before the subform (so that user can see controls on page before the report).
"/jasperservlet" generates the report in about half a minute.
I want to have a JavaScript that runs after the page is rendered (and the user sees the controls) and then it starts to generate report.
I tried to put a frame with such javascript, but the javascript is executed before user can see controls.
How can it be done?

Thank you for your answers.
Yes, I'm trying to execute javascript code on the child page, the modal one.
Basically, there's a button on my parent page which opens the modal page. The modal page has buttons Cancel, Delete and Save. Clicking Save button submits the changes and if there are errors, errors are shown and we stay on the modal page.
My modal pages are all of fixed dimensions and if there are errors, I have to adjust the other regions (adjust their height, add a scrollbar, etc) in order to show everything in the modal page.
I have written a function that does exactly that, but I have to execute the function after the page is loaded and the regions are shown. But, if I execute it using onload attribute, or setting a dynamic action which fires on page load, the function gets executed during the submit, before the regions are shown.
I hope I have managed to clear up the problem.
As always, thank you.

Similar Messages

  • Execute javascript after update and submit in Skillbuilders Modal Page

    Hi,
    I'm editing, say, list of my employees in a tabular form opened in Skillbuilders Modal Page.
    I have to execute same javascript code after the changes in the tabular form have been submitted.
    I've tried using a Dynamic Action fired on Page Load, but that gets executed before the update is completed.
    Does anyone have an idea how to accomplish this?
    Thank you!

    Thank you for your answers.
    Yes, I'm trying to execute javascript code on the child page, the modal one.
    Basically, there's a button on my parent page which opens the modal page. The modal page has buttons Cancel, Delete and Save. Clicking Save button submits the changes and if there are errors, errors are shown and we stay on the modal page.
    My modal pages are all of fixed dimensions and if there are errors, I have to adjust the other regions (adjust their height, add a scrollbar, etc) in order to show everything in the modal page.
    I have written a function that does exactly that, but I have to execute the function after the page is loaded and the regions are shown. But, if I execute it using onload attribute, or setting a dynamic action which fires on page load, the function gets executed during the submit, before the regions are shown.
    I hope I have managed to clear up the problem.
    As always, thank you.

  • Issue with invoking javascript during jspx page load

    Hi All,
    I am using Jdeveloper 11gR2.
    I have embedded a small javascript snippet in the adf page to invoke a managed bean method during page load.
    <af:serverListener type="onloadEvent" method="#{AMBean.click}"/>
                <af:clientListener method="onLoadClient" type="load"/>
                <af:resource type="javascript">function onLoadClient(event) {AdfCustomEvent.queue(event.getSource(),"onloadEvent",{},false); return true;}</af:resource>
    In the associated managed bean method, I want to change the setContentStyle of all the input text field found during run time -
            System.out.println("There control is inside the listeners");
            FacesContext facesContext = FacesContext.getCurrentInstance();
            System.out.println("facesContext"+facesContext);
            UIViewRoot root = facesContext.getViewRoot();
            System.out.println("root - " +root);
            RichPanelFormLayout formClass = (RichPanelFormLayout)root.findComponent("db");
            System.out.println("formClass - " + formClass);
            List<UIComponent> uiComponentList = formClass.getChildren();
                  for (UIComponent uiComponent : uiComponentList) {
                      if (uiComponent instanceof RichInputText) {
                          //((RichInputText)uiComponent).setDisabled(false);
                          //((RichInputText)uiComponent).setColumns(100);
                         ((RichInputText)uiComponent).setContentStyle("width:200px");
                          System.out.println("uiComponent - " +uiComponent);
    Currently the javascript function "queues" the setContentStyle action for an action event, i.e. during the initial page load, the properties of text fields are not changed, however as soon as i click any button on the page, the text field width is reset to what I have defined in setContentStyle property.
    Is there a way to execute setContentStyle action as soon as the page loads initially?
    Best Regards,
    Ankit Gupta

    Hi Arun,
    Many thanks for the revert.
    The exact Jdeveloper version is 11.1.2.4.39.64.36.1.
    I have a scenario where in the the user will be navigated to a page to display an input form, but the underlying VO will change during runtime which means depending on the value selected by the user, he will be shown an ADF form accordingly.
    Also during runtime, the number of input text fields will change according to the number of attributes in underlying VO.
    Kindly advise based on the use case explained above.
    Best Regards,
    Ankit Gupta

  • Webcenter Tutorial 11g - MyPage.jspx Page Rendering Problem

    Hi.
    I have just installed the Webcenter framework updates to Jdev 11.1.1.2.0 and started to work with the Webcenter tutorial. I have installed the Webcenter schema, under "webcenter".
    I have a problem getting my first page, MyPage.jspx to render the first set of composer components, i.e. nothing seems to display at all on my page, it is completely blank when I try and run the page. ( I have isolated my webcenter tags )
    I get the following message in the Jdev log:
    <MDSRestrictionPolicy><_updateMDSRef> An error has occurred while finding the page for the component with client ID layoutCustomizable1.
    Can someone tell me why my page is coming up blank? Does this have to do with webcenter schema perhaps, or something in my tags.
    Thanks.
    My JSPX code looks like this:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:pe="http://xmlns.oracle.com/adf/pageeditor"
    xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:panelSplitter orientation="vertical" splitterPosition="236" id="ps1">
    <f:facet name="first">
    <pe:pageCustomizable id="pageCustomizable1">
    <pe:layoutCustomizable id="layoutCustomizable1"
    type="twoColumnTop">
    <cust:panelCustomizable id="panelCustomizable2"/>
    <f:facet name="contentA">
    <cust:panelCustomizable id="panelCustomizable3"/>
    </f:facet>
    <f:facet name="contentB">
    <cust:panelCustomizable id="panelCustomizable4"/>
    </f:facet>
    </pe:layoutCustomizable>
    </pe:pageCustomizable>
    </f:facet>
    <f:facet name="second">
    <!-- id="af_one_column_header_stretched_with_splitter" -->
    </f:facet>
    </af:panelSplitter>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

    Hum this has happened to me before. It used to happen when I used the pageCustomizable in a wrong way, like when I placed the panelCustomizable outside pageCustomizable, or when I forgot the Edit Link (or button) to go with the pageCustomizable. Hope this helps!

  • Executing Javascript AFTER the action in Backing Bean

    I have a commandButton on my JSP which is bound to a method in my backing bean by the action attribute. However, I also have a Javascript function call in onClick. But, the Javascript function call is always executed first and then my action method is executed. Is there a way to execute the action method first and THEN the Javascript call? I simply just want to popup a message that says 'Save successful' or something to that effect.

    put a onload on your body.
    The javascript function reads a form value and if a certain condition is true you show the alert.
    For example, i've this to clean up error messages. (JavaScript)
    // Cleans the application error messages if there are jsf errors
    function cleanErrorMessages(){
        if(document.getElementById('form1:jsfErrorMessages') != null){
            document.getElementById('form1:applicationErrorMessages').innerText='';
    }

  • Some javascript code does not work out in a .jspx page

    To the experienced:
    I am trying to improve some pages in my application. In one of the pages, there are only two elements in the form: an input box (for user to put in his username) and a submit button. What I am trying to do are:
    1. Make the input box be in focus when the page is loaded, so that the user can start typing right away without having to fumble for the mouse and than click the input for it to get focus.
    2. After the user has typed the username, pressing the Enter key to submit the form instead of fumbling for the mouse again and click hte submit button.
    These are not difficult to do. I wrote a test page, and the following are the snippets from the test page:
    <pre>
    &lt;body <b>onload="document.getElementById('username').focus();"</b>&gt;
    &lt;form method="post" action="http://host.domain.edu/pages/staffLogin.jspx"&gt;
    &lt;table&gt;
    &lt;tr&gt;&lt;td&gt;UID:&lt;/td&gt;&lt;td&gt;&lt;input <b>id="username"</b> type="text" name="LoginName"&gt;&lt;/td&gt;&lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;input type="submit" value="Submit"&gt;&lt;/td&gt;&lt;/tr&gt;
    &lt;/table&gt;
    &lt;/form&gt;
    &lt;/body&gt;
    </pre>
    This page does the two things that I want to accomplish, in both Internet Explorer and FireFox. I do not need to add any code for the Enter key to act for the submit button - it behaves that way by default.
    But not in the page of my application, with the snippets here:
    <pre>
    &lt;f:view&gt;
    &lt;afh:html ...&gt;
    &lt;afh:head ...&gt;
    &lt;script type="text/javascript"&gt;<b>self.resizeTo(900,1000);</b>&lt;/script&gt;
    &lt;meta .../&gt;
    &lt;/afh:head&gt;
    &lt;afh:body binding="#{staffLogin.body1}" id="body1" <b>onload="document.getElementById('inputText1').focus();"</b>&gt;
    &lt;af:inputText binding="#{staffLogin.inputText1}" secret="true" <b>id="inputText1"</b>
    required="true" requiredMessageDetail="Password required."
    value="#{staffLogin.submittedPassword}"
    <b>onkeydown="if(event.keyCode == 13) document.getElementById('commandButton1').click();"</b>/&gt;
    &lt;af:commandButton text="Submit"
    binding="#{staffLogin.commandButton1}" <b>id="commandButton1"</b>
    action="#{staffLogin.commandButton1_action}"/&gt;
    </pre>
    What do I do not right? Is DOM recognized in .jspx? Note that the <code>self.resizeTo(900,1000);</code> part works.
    Many thanks!
    Newman

    Hi,
    use af:document instead of afh:html (etc.)
    http://download.oracle.com/docs/cd/B25221_05/web.1013/e18745/tagdoc/core/document.html
    initialFocusId       
    the id of the component to which you want the focus to be when the full page renders. The accessibility-mode must be set to "inaccessible" for this feature to be on. This attribute is not supported on the following agent types: pda, phone, voice.
    Use af:form to define the form
    http://download.oracle.com/docs/cd/B25221_05/web.1013/e18745/tagdoc/core/form.html
    defaultCommand       
    The id attribute of the command button whose action would be invoked by default for form submit on hitting enter on any of the input fields of the form.
    You don't need JavaScript at all!
    Frank

  • Javascript error on jspx page

    Hello all,
    I am using ADF BC and ADF faces with JDEV version 11.2. I have issue where I have a popup on a page to create a row. Lately, I keep getting error in javascript as x269.getPeer().setBusy(x269,true); I used firebug to get this information and the line is in boot-SHEPHERD-PS1-9296.js
    I am not able to see why I get this error. Does anyone have a clue or resolution to this issue? I am pasting the code of jspx page below -
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:pageTemplate viewId="/templates/twocol-fixedheader-nomenu.jspx"
    value="#{bindings.pageTemplateBinding}" id="pt1">
    <f:facet name="left">
    <af:panelGroupLayout id="pgl1" layout="vertical">
    <af:panelAccordion id="pa1">
    <af:showDetailItem id="sdi1" stretchChildren="first">
    <af:train value="#{controllerContext.currentViewPort.taskFlowContext.trainModel}"
    id="t1" layout="vertical"/>
    </af:showDetailItem>
    </af:panelAccordion>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="center">
    <af:panelGroupLayout id="pgl3" layout="vertical">
    <af:panelHeader text="#{res['create.writeoff.approvalflow']}"
    id="ph1">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar">
    <af:panelGroupLayout id="pgl2" layout="horizontal">
    <af:trainButtonBar value="#{controllerContext.currentViewPort.taskFlowContext.trainModel}"
    id="tbb1"/>
    <af:toolbar id="t2">
    <af:commandToolbarButton text="#{res['button.save.title']}"
    id="ctbWriteOffExit"
    action="Save" immediate="true"/>
    <af:commandToolbarButton text="#{res['button.exit.title']}"
    id="commandToolbarButton1"
    action="Cancel"
    immediate="true"/>
    </af:toolbar>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="legend">
    <af:outputFormatted value="WO#{bindings.Id.inputValue} : #{bindings.Title.inputValue}"
    id="of2"/>
    </f:facet>
    <f:facet name="info"/>
    <af:panelGroupLayout id="pgl4" layout="horizontal">
    <af:spacer width="0" height="10" id="s2"/>
    <af:outputFormatted id="of1"
    value="#{res['create.writeoff.approvalflow.info']}"/>
    </af:panelGroupLayout>
    </af:panelHeader>
    <af:separator id="s1"/>
    <af:panelGroupLayout id="pgl5" layout="horizontal">
    <af:commandToolbarButton id="ctb2"
    text="#{res['button.insert.title']}"
    rendered="#{UserInfoBean.approver}">
    <af:showPopupBehavior popupId="p1"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton id="commandToolbarButton2"
    text="#{res['button.delete.title']}"
    rendered="#{pageFlowScope.WriteOffBean.addedByUser == 'Y' and pageFlowScope.WriteOffBean.approverAddedBy == UserInfoBean.employeeLanId or backingBeanScope.AuthorizationBean.sysAdminRole}"
    action="#{TableBean.deleteApprover_action}"/>
    <af:commandToolbarButton id="commandToolbarButton3"
    text="Insert Before">
    <af:showPopupBehavior popupId="p3"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton id="commandToolbarButton4"
    text="Insert After">
    <af:showPopupBehavior popupId="p3"/>
    </af:commandToolbarButton>
    </af:panelGroupLayout>
    <af:table value="#{bindings.WoApproverVO11.collectionModel}"
    var="row" rows="#{bindings.WoApproverVO11.rangeSize}"
    emptyText="#{bindings.WoApproverVO11.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.WoApproverVO11.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.WoApproverVO11.collectionModel.selectedRow}"
    selectionListener="#{bindings.WoApproverVO11.collectionModel.makeCurrent}"
    rowSelection="single" id="t3"
    partialTriggers="::commandToolbarButton2 ::p3 ::d3"
    styleClass="AFStretchWidth" displayRow="last">
    <af:column sortProperty="SeqId" sortable="true"
    headerText="#{bindings.WoApproverVO11.hints.SeqId.label}"
    id="c1">
    <af:outputText value="#{row.SeqId}" id="ot1">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.WoApproverVO11.hints.SeqId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="EmpRoleName" sortable="true"
    headerText="#{bindings.WoApproverVO11.hints.EmpRoleName.label}"
    id="c3">
    <af:outputText value="#{row.EmpRoleName}" id="ot6"/>
    </af:column>
    <af:column sortProperty="Status" sortable="true"
    headerText="#{bindings.WoApproverVO11.hints.Status.label}"
    id="c2">
    <af:outputText value="#{row.Status}" id="ot2"/>
    </af:column>
    <af:column sortProperty="Watcher" sortable="true"
    headerText="#{bindings.WoApproverVO11.hints.Watcher.label}"
    id="c4">
    <af:outputText value="#{row.Watcher}" id="ot5"/>
    </af:column>
    <f:facet name="contextMenu">
    <!--af:popup id="p2">
    <af:menu text="menu 1" id="m2">
    <af:commandMenuItem text="#{res['button.before.title']}" id="cmi1"
    actionListener="#{pageFlowScope.WriteOffBean.onAddApproverBefore}">
    <af:showPopupBehavior popupId="::p3"/>
    </af:commandMenuItem>
    <af:commandMenuItem text="#{res['button.after.title']}" id="cmi2"
    actionListener="#{pageFlowScope.WriteOffBean.onAddApproverAfter}">
    <af:showPopupBehavior popupId="::p3"/>
    </af:commandMenuItem>
    </af:menu>
    </af:popup-->
    </f:facet>
    </af:table>
    <af:popup id="p1"
    popupFetchListener="#{pageFlowScope.WriteOffBean.addApproverPopupFetchListener}"
    popupCanceledListener="#{pageFlowScope.WriteOffBean.addApproverPopupCancelListener}"
    contentDelivery="lazyUncached"
    binding="#{pageFlowScope.WriteOffBean.approverPopup}">
    <af:dialog id="d2" title="Add Approver or Watcher"
    dialogListener="#{pageFlowScope.WriteOffBean.addApproverDialogListener}">
    <af:panelFormLayout id="pfl1">
    <af:inputListOfValues id="empNameId"
    popupTitle="Search and Select: #{bindings.EmpName.hints.label}"
    value="#{bindings.EmpName.inputValue}"
    label="#{bindings.EmpName.hints.label}"
    model="#{bindings.EmpName.listOfValuesModel}"
    required="#{bindings.EmpName.hints.mandatory}"
    columns="#{bindings.EmpName.hints.displayWidth}"
    shortDesc="#{bindings.EmpName.hints.tooltip}"
    autoSubmit="true">
    <f:validator binding="#{bindings.EmpName.validator}"/>
    </af:inputListOfValues>
    <af:selectBooleanCheckbox value="#{bindings.Watcher1.inputValue}"
    label="#{bindings.Watcher1.label}"
    shortDesc="#{bindings.Watcher1.hints.tooltip}"
    id="sbc1"/>
    </af:panelFormLayout>
    </af:dialog>
    </af:popup>
    <af:popup id="p3"
    popupFetchListener="#{pageFlowScope.WriteOffBean.addApproverPopupFetchListener}"
    popupCanceledListener="#{pageFlowScope.WriteOffBean.addApproverPopupCancelListener}">
    <af:dialog id="d3">
    <af:inputListOfValues id="inputListOfValues1"
    popupTitle="Search and Select: #{bindings.EmpName.hints.label}"
    value="#{bindings.EmpName.inputValue}"
    label="#{bindings.EmpName.hints.label}"
    model="#{bindings.EmpName.listOfValuesModel}"
    required="#{bindings.EmpName.hints.mandatory}"
    columns="#{bindings.EmpName.hints.displayWidth}"
    shortDesc="#{bindings.EmpName.hints.tooltip}"
    autoSubmit="true">
    <f:validator binding="#{bindings.EmpName.validator}"/>
    </af:inputListOfValues>
    <af:selectBooleanCheckbox value="#{bindings.Watcher1.inputValue}"
    label="#{bindings.Watcher1.label}"
    shortDesc="#{bindings.Watcher1.hints.tooltip}"
    id="sbc2"/>
    </af:dialog>
    </af:popup>
    </af:panelGroupLayout>
    </f:facet>
    </af:pageTemplate>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

    Hi,
    build 9296 doesn't sound like a public version of JDeveloper. Is this from a production version ? If not, please test another version and - if required - file a bug
    Frank

  • Problem with Firefox rendering using a jspx page

    Hello, your help will be very important for me, so please read this :
    this is the code of my jspx page :
    <?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:af="http://xmlns.oracle.com/adf/faces"
         xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
         <jsp:directive.page contentType="text/html;charset=utf-8" />
         <f:view locale="#{locale.locale}">
              <!-- Load localized messages -->
              <f:loadBundle var="bundle" basename="localizedMessages" />
              <!-- Main document element -->
              <af:document title="#{bundle.account_bucket_title}">
                   <af:panelBorder>
                        <f:facet name="top">
                             <af:panelGroup>
                                  <!-- Top bar -->
                                  <jsp:directive.include file="includes/header.jspf" />
                                  <!-- Top menu -->
                                  <jsp:directive.include file="includes/MenuTop.jspf" />
                             </af:panelGroup>
                        </f:facet>
                        <f:facet name="bottom">
                             <af:panelGroup inlineStyle="position: relative; bottom:0px">
                                  <!-- Bottom menu -->
                                  <jsp:directive.include file="includes/MenuBottom.jspf" />
                             </af:panelGroup>
                        </f:facet>
                        <!--bucket details-->
                        <af:panelGroup layout="vertical"
                             inlineStyle="overflow:auto; height=88%; position:relative">
                             <af:objectSpacer width="100" height="20" />
                             <af:panelHeader text="#{bundle.account_bucket_title}" size="0" />
                             <af:objectSpacer width="100" height="20" />
                             <af:table emptyText="#{bundle.account_bucket_no_items}" var="item"
                                  value="" width="100%">
                                  <af:column sortable="true"
                                       headerText="#{bundle.account_bucket_bundle_table_col1}"
                                       headerNoWrap="true" formatType="text">
                                       <af:outputText value="" />
                                  </af:column>
                                  <af:column sortable="true"
                                       headerText="#{bundle.account_bucket_bundle_table_col2}"
                                       headerNoWrap="true" formatType="text">
                                       <af:outputText value="" />
                                  </af:column>
                                  <af:column sortable="true"
                                       headerText="#{bundle.account_bucket_bundle_table_col3}"
                                       headerNoWrap="true" formatType="text">
                                       <af:table emptyText="#{bundle.account_bucket_bucket_no_item}"
                                            var="item" value="" width="100%">
                                            <af:column sortable="true"
                                                 headerText="#{bundle.account_bucket_bucket_table_col1}"
                                                 headerNoWrap="true" formatType="text">
                                                 <af:outputText value="" />
                                            </af:column>
                                            <af:column sortable="true"
                                                 headerText="#{bundle.account_bucket_bucket_table_col2}"
                                                 headerNoWrap="true" formatType="text">
                                                 <af:outputText value="" />
                                            </af:column>
                                            <af:column sortable="true"
                                                 headerText="#{bundle.account_bucket_bucket_table_col3}"
                                                 headerNoWrap="true" formatType="text">
                                                 <af:outputText value="" />
                                            </af:column>
                                            <af:column sortable="true"
                                                 headerText="#{bundle.account_bucket_bucket_table_col4}"
                                                 headerNoWrap="true" formatType="text">
                                                 <af:outputText value="" />
                                            </af:column>
                                            <af:column sortable="true"
                                                 headerText="#{bundle.account_bucket_bucket_table_col5}"
                                                 headerNoWrap="true" formatType="icon">
                                                 <af:commandButton
                                                      text="#{bundle.account_bucket_bucket_adjustment_btn}"
                                                      action="" />
                                            </af:column>
                                       </af:table>
                                  </af:column>
                             </af:table>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                             <af:objectSeparator></af:objectSeparator>
                        </af:panelGroup>
                   </af:panelBorder>
              </af:document>
         </f:view>
    </jsp:root>
    When i use IE there is no problem, an iFrame is generated and the bucket detais are rendered into it.
    The problem is with Firefox, the is an iFrame in the HTML code, but there is no rendering of it : why ?
    it seems that iFrames are well-rendered with FireFox and i don't no how to change my page to render it good with both FireFox and IE
    Please tell me a solution, something to change with my ADF tags ?...
    Sincerely,
    edward.

    i found solution for the problem that i use the following code to include JavaScript file
    i found that the problem occurred when i use the following code to include JavaScript file
    <script type="text/javascript" src="javascriptfile.js"/>
    also if i included 2 JavaScript files only one file is included at runtime
    but when i used the following code to include JavaScript files
    <afh:script source="javascriptfile.js"/>
    the two problems were solved (the problem of LOV and the problem of including multiple /js files)
    i don't know if it is a bug in the ADF or i made a mistake in the previous way
    any way thanks to you all for helping me

  • How to load external javascript ie .js in jspx page

    hi,
    iam working on google maps ,Here there is a requirement of loading .js file in my page .
    As it is giving browserincompatible so i need to load one .js file
    var myscript='<scr'+'ipt src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAPo9X9pm4mfzxWjIBt3ksKRS4esmU9vLdcxKKAENie0wV_E31CBTJqzQ38VajF1xsqjQkomrOiQD5bw" type="text/javascript"&gt;&lt;\/script&gt;';
    document.write(myscript);
    here var myscript='< is not executed in .jspx page it takes 'lt:
    please help me

    Heya,
    I believe you can embed the .swf file using flex code in flex builder. I just did a quick google search and came up with a few articles. I don't think there is a way to do this in Catalyst yet, but please correct me if I am wrong.
    I am also building my portfolio in Catalyst as a little project and although there are some bugs I am really enjoying the Beta
    Hope this helps!
    Chris

  • Page rendering process doesn't run after validation error

    I have a page rendering process (On Load - After Regions) that needs to be run for my page to be rendered properly; however, it doesn't run when the page is rendered after a validation error. In debug mode, I see the following line:
    "0.05: ......do not perform process because inline validation condition found."
    Is this a bug? Validations are meant to prevent execution of On Submit processes, but is there a reason to also not run rendering processes?
    I need to dynamically construct some javascript and insert it somewhere after a certain item on the page. Is there a workaround?
    Thanks.
    Rodney

    Rodney,
    Let me see if I understand your question:
    1. A page is rendered
    2. The page is submitted
    3. A validation fires and fails
    4. The page is re-rendered displaying the validation error message
    5. Your on-load after regions process did not fire
    You want to run a process in all cases; in the standard page load case (1) and in the re-load case (4).
    You can do this by creating a region of type PL/SQL. You can give the region a null template so that it will not display any values. The region can be the last one displayed on the page; so that it will be run last.
    You also asked if it is a bug that the on-load after regions process did not fire; as the debug message indicates this is proper. Here is an example that illustrates why you typically don't want to perform processes when rendering a page after it was posted causing a validation to fire.
    Lets take the following example:
    1. create a form on the emp table; assume a salary column called "SAL"
    2. create a validation that says the salary must be numeric
    3. edit a row of the EMP table
    4. change the employee job from clerk to manager; and enter a "X" in the salary item
    5. submit the page
    6. the validation will fire; page processing will stop; and the page will be re-displayed
    7. the process which fetches the rows will not fire; and the page will be re-displayed; the job item will display the change from "clerk" to "manager" and salary will still contain the invalid "X" value. If the process had fired it would have replaced the values in the form.
    My recommendation is that you use regions for any processing that is UI releated. I hope this helps.
    Mike

  • Cannot rendering an image in a jspx page correctly in runtime

    I work in jdev 11.1.2.3.0.
    I create a jspx page like this:
    -af:panelStrtchLayout
    --f:facet - center
    ----af:panelTabbed
    ------af:showDetailItem - Router Map
    --------af:panelGroupLayout - scroll
    -----------af:image -#{resource['images:home.jpg']}
    I can see the home.jpg fill the Router Map panel (af:showDetailItem) fully in designer view, but when i run this jspx page, only a small icon is rendering in the Router Map tabpanel. and I tried set different value for such as, af:panelGroupLayout - horizental, but it doesnot work.
    What's the matter?
    Thanks.

    where is the image located?
    I select the image file when drop a image component from the project working directory, as:
    D:\JDeveloper\mywork\layoutapp\Project1\src\META-INF\resources\images
    and there are sub folders as:
    D:\JDeveloper\mywork\layoutapp\.data
    D:\JDeveloper\mywork\layoutapp\Project1
    D:\JDeveloper\mywork\layoutapp\src

  • ADF how can i execute a query with parameters when the page renders

    hi
    i am using ADF web 11g
    i need to execute a query with parameters when the page renders
    thanks

    hello,
    I'm a fan of Java code, I really am.
    But when you use ADF, you decided to move to a more declarative environment.
    So why not do it declarative, the adf way?
    In your pagedef insert a action binding.
    This can be anything, a call to the application module, a call on the iterator(Like executeWithparams, etc.)
    Create an invokeAction in your pagedef and set the condition.
    This example refreshes(Action 2 is execute query) the data.
    First the method binding:
        <action IterBinding="PersoonIterator" id="Execute" InstanceName="LSAppModuleDataControl.Persoon"
                DataControl="LSAppModuleDataControl" RequiresUpdateModel="true" Action="2"/>And the invoke action
        <invokeAction Binds="Execute" id="refreshData"/>This always refreshes the data on page entry, but anything is possible, you can set condictions for the invokeAction.
    -Anton
    PS Yes I know that pagedefs become backing beans in the end and yes that is Java code, but if you wanna play the ADF way, the goal is the reduction of Java code and the increased performance of declarative programming.

  • Javascript issue for fragment in jspx page cannot find regionId

    I am using Jdev 11.1.1.4.0
    When i am calling the javascript function its not able to find the region thus my component is not found in the jsff page.
    Please help !!!
    Below is my jspx page :-
    <f:view>
        <af:document id="d1" title="Home Page" partialTriggers="pt1">
             <af:resource type="css" source="/com/ge/vacancy/css/GECustomStyle.css"/>
          <af:form id="f1">
            <af:pageTemplate viewId="/com/ge/vacancy/pageTemplate/GEVacancyPageTemplate.jspx"
                             value="#{bindings.pageTemplateBinding}" id="pt1">
              <f:facet name="Content">
                <af:region value="#{bindings.defaultflow1.regionModel}" id="r1" clientComponent="true"/>
              </f:facet>
    </af:form>
           <af:group id="g1">
    <![CDATA[
            <script>
        function charChecker(evt){
    region=AdfPage.PAGE.findComponentByAbsoluteId("r1");
                        if(region!=null)
                    counter             = region.findComponent("ot17");
                    counter_value       = counter.getValue();
                      }else {
    alert('Region not found')
      </script>]]>
          </af:group>
        </af:document>
    </f:view>
    In my frgment jsff page i have the following :
    <af:inputText id="it2" rows="08" maximumLength="500"
                                      value="#{bindings.Role.inputValue}"
                                      autoSubmit="true" immediate="true"
                                      partialTriggers="::gli11:soc15" columns="175"
                                      clientComponent="true"
                                      valueChangeListener="#{pageFlowScope.JobDescriptionBean.roleVC}"
                                      binding="#{pageFlowScope.JobDescriptionBean.roleInputText}">
                                      <af:clientListener method="charChecker" type="keyDown"/>
    </af:inputText>
    <af:spacer id="sp22" width="2"/>
                          <af:outputText id="ot17" clientComponent="true"
                                                                              value="500"/>

    Hi,
    Why not use findComponent as in below.
    findComp=function(event){
    var source=event.getSource();
    var component=source.findComponent("componentId");
    For this to work the component ot19 which i am assuming is a outputtext has to have value of clientComponent set to true.  Here event will automatically be passed if invoking the component via a clientlistener.
    Use findComponentByAbsoluteId only if you know the absolute id of the component. To be sure of the absolute id bind the component to a managed bean and then invoke the javascript as in the example shown below.
    public String someAction() {
          FacesContext context = FacesContext.getCurrentInstance();
          ExtendedRenderKitService erks =
          Service.getRenderKitService(context, ExtendedRenderKitService.class);
          erks.addScript(context,"someJSAction('"+textBinding.getClientId(context) +"')");
          return null;
    ADF JS
    someJSAction=function(clientId){
    var component= AdfPage.PAGE.findComponentByAbsoluteId(clientId);

  • Execute Javascript, window.print(), prints blank page in Captivate 7

    Hello,
    I'm fairly new to Captivate, and am no Javascript expert.  I've been trying to figure out how to print the last slide in project, which has a custom certificate.  I initially tried the print widget that comes with Captivate 7, but the scaling is off when printed.  There are no options to change the scale of the printed slide on the widget properties, so that seemed to be a bust.  I then tried to create a button to execute javascript when clicked.  In the script window I put, window.print(); now this works to bring up the print box, but only prints a blank page.  I'm not sure if it's something I'm doing wrong with javascript.  I've been reading other forum posts, and this function seems to work for others using different versions of Captivate.
    I know there is a cool print widget that someone has made, but I'd actually prefer to just do this with javascript.  I haven't tried the buyable print widget yet, but I am trying not to use widgets so that the html can be scalable. 
    I'm publishing my projects and uploading them to GoogleDrive, where I then preview the html output.
    I'd appreciate any help.  Thanks!
    Kailey

    Wow, thank you for such a speedy response Rick.  I've actually been using Firefox and Google Chrome, because IE isn't updated enough to work with Google Drive properly (and I don't want to go through the whole process to get privileges to update on work computer).  But I did check this box in Firefox.  Instead of printing the objects on my slide, it printed a big square light grey background.  It's almost like the the browser can't see the project.
    I would think this was a browser problem, but I had previously downloaded a trial of Articulate (trying to decide between the two), which has the same execute javascript function as Captivate.  Putting in window.print();, publishing, and uploading to Google Drive, printed just fine.  Not sure if something in the code in Captivate isn't coming through, but is in Articulate.  I'm not versed in html or javascript enough to compare the two html files. 
    Back to the drawing board!  Thanks for your help.
    Kailey

  • Problem in PS5(11.1.1.6) with jspx page opening as popup

    I am trying to open a jspx page which contains af:table in a new window. Each time I open the window I am closing the window. After 3rd attempt the page is hanging to load the page.
    I was able to produce this issue in IE7, IE8 and IE9 but not firefox. In IE7, I was able to reproduce this issue in 3rd attempt but in IE9 it does happen after 7th or 8th attempt. Currently an SR is opened with Oracle Support.
    Any help will be appreciated.
    Version: PS5-11.1.1.6
    Integrated Weblogic Domain.
    This problem is not happening in PS4 (11.1.1.5).
    Steps:
    1. Create an ADF application with Jspx page and add a table. Open the page from html using a href tag with target="_blank".
    2. open the jspx page by clicking on the link in a new window. Close the popup window
    3. Repeat step 2. In IE7 3rd attempt the page will be keep on looping trying to render the page
    I have noticed below exception in the diagnostic logs
    [2013-05-23T11:39:27.599-05:00] [DefaultServer] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: aa5c8768ae0561d4:1267b2c4:13ed1c1d7d9:-8000-0000000000000b82,0] [APP: Application3] ADF: Adding the following JSF error message: java.lang.NullPointerException[[
    java.lang.NullPointerException
         at oracle.jbo.domain.TypeFactory.get(TypeFactory.java:558)
         at oracle.jbo.domain.TypeFactory.getInstance(TypeFactory.java:351)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:225)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:57)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:325)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:239)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:469)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:313)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.invokeMethodAction(JUMethodIteratorDef.java:173)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.initSourceRSI(JUMethodIteratorDef.java:656)
         at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1672)
         at oracle.adf.model.binding.DCIteratorBinding.internalGetRowSetIterator(DCIteratorBinding.java:1645)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4395)
         at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:341)
         at oracle.adf.model.binding.DCIteratorBinding.getDeferredEstimatedRowCount(DCIteratorBinding.java:3752)
         at oracle.jbo.uicli.binding.JUCtrlRangeBinding.getDeferredEstimatedRowCount(JUCtrlRangeBinding.java:126)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager._getRowCount(RowDataManager.java:523)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getEstimatedRowCount(RowDataManager.java:321)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.getEstimatedRowCount(FacesCtrlHierBinding.java:747)
         at org.apache.myfaces.trinidad.component.UIXCollection.getEstimatedRowCount(UIXCollection.java:1298)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.getEstimatedRowCount(BaseTableRenderer.java:1793)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1690)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1618)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:1020)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:506)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:538)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$EncodeChildVisitCallback.visit(InvokeOnComponentUtils.java:113)
         at org.apache.myfaces.trinidadinternal.context.PartialVisitContext.invokeVisitCallback(PartialVisitContext.java:222)
         at org.apache.myfaces.trinidad.component.UIXIterator.visitTree(UIXIterator.java:251)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at oracle.adf.view.rich.component.rich.RichDocument.visitTree(RichDocument.java:198)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:43)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:756)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:525)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:3606)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1508)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    I would like to step back and would like to explain some details about the requirement.
    The original requirement is to integrate this application with one of our legacy application which uses jsp and html. We open webcenter portal page as a new window from the legacy application using javascript window.location. The business requirement is to keep the legacy page open and process the use case in webcenter portal page which contains table and popup components. So, the users of the legacy application will open the page in new window and as they complete each use case they close the browser and again open with new use case.
    Everything was perfectly working till we started all our applications to PS5. We started seeing above problem.
    I was able to narrow down the problem and found that the issue is causing because of using table and popup component on the page.
    oracle support just confirmed that this is happening only in PS5 and not in PS6.

Maybe you are looking for