ADF treeTable element problem

HI friends.
I'm using now JDeveloper 11.1.1.2
Can anybody help with a small trouble i faced as tried to fit an ADF treeTable element in my application.
I've created a down-hierarchy tree which includes elements of two levels: parent elements and child elements.
The source code of a tree model element in a respective page defenition file looks like this
<tree IterBinding="CaptanView1Iterator" id="CaptanView1">
      <nodeDefinition DefName="minit.org.model.views.voc.CaptanView"
                      Name="CaptanView10"
                      TargetIterator="#{bindings.CaptanView1Iterator}">
        <AttrNames>
          <Item Value="fio"/>
        </AttrNames>
        <Accessors>
          <Item Value="CaptanHistoryView"/>
        </Accessors>
      </nodeDefinition>
      <nodeDefinition DefName="minit.org.model.views.voc.CaptanHistoryView"
                      Name="CaptanView11" TargetIterator="#{bindings.CaptanHistoryView1Iterator}">
        <AttrNames>
          <Item Value="violationdate"/>
          <Item Value="articles"/>
        </AttrNames>
      </nodeDefinition>
    </tree>i've also assosiated a navigation case action with a command link which in fact repesents the node of the tree.
The problem is that for some nodes i have to click the mouse button twice to have the action handler trigger.
A first click leads to what it seems like a simple repost and the second click works properly. By the way i occasionally get the following message as i click my tree-node links.
<ActionListenerTag$BindingActionListener><processAction> JSF1043: ActionListener for component 'tt1:5:ot2' will not be processed - both binding and type are null.It's weird that the underlined message and wrong behavior take place not in a regular way, for some tree nodes only.
Any help would be appreciated.
Alex.

Hi,
the reason for not getting an answer is that you describe a problem that exists on the view layer and show th etree definition on the ADF binding layer.
Frank

Similar Messages

  • Adf  treeTable issue

    HI again!
    I 'm a bit confused about using an adf treeTable component (adf faces 11g).
    I've created a down-hierarchy tree with root nodes and child nodes. Now i need to bind an action listener to child nodes only. So i've defined the nodeStamp facet's component as a commandLink and assigned the appropriate action listener to it.
    The problem is that it fires now when i click a root node link as well as when i click a child node link. Is there any solution for this?
    It would be great at all if it were possible to define the root node component to be something like output text (not command component) and the child component to be a command link.
    Thanks in Advance. Alex.

    You can use a switcher component inside the tree to display different things based on the tree node type #{node.hierType.structureDefName}.
                  <af:tree value="#{bindings.LocationsView1.treeModel}" var="node"
                           selectionListener="#{bindings.LocationsView1.treeModel.makeCurrent}"
                           rowSelection="single" id="t1"
                           binding="#{backing_index.tree}">
                    <f:facet name="nodeStamp">
                      <af:group id="g1">
                        <af:switcher id="s1" defaultFacet="drag"
                                     facetName="#{backing_index.allowDrag}">
                          <f:facet name="drag">
                            <af:panelGroupLayout id="pgl2">
                              <af:outputText value="#{backing_index.allowDrag}" id="ot3"/>
                              <af:outputText value="#{node}" id="ot1">
                                <af:attributeDragSource attribute="value"/>
                              </af:outputText>
                            </af:panelGroupLayout>
                          </f:facet>
                          <f:facet name="nodrag">
                            <af:group id="g2">
                              <af:outputText value="#{backing_index.allowDrag}#{node.selectedRow}" id="ot4"/>
                              <af:outputText value="#{node}" id="ot2"/>
                            </af:group>
                          </f:facet>
                        </af:switcher>
                      </af:group>
                    </f:facet>
                  </af:tree>

  • Web Center app with ADF Security - login problem

    I have a custome Oracle Web Center app.
    I have a page.html with an embedded login form posting to j_security_check. I've configured the ADF security policies to redirect to a JSPX on successful login.
    When I try the correct username/password, I get redirected not to the page I defined in ADF, but to the root page http://127.0.0.1:7101/MyApp-ViewController-context-root/
    and i get
    Error 403--Forbidden
    I've checked the weblogic.xml as per http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html, all the required entries are there.
    This works fine if i use a Login link with
    destination="#{'/adfAuthentication?login=true&amp;end_url=/faces/postLogin.jspx'} "
    which redirects to the default login.html and then to the right page. I've copied the form from the default login.html into my master HTML page.
    Hope my question is clear. Any suggestions why it is going to the wrong URL after login.
    Is there anything specific I should see in the jazn-data.xml or web.xml regarding the post-login URL since i cant see that in either.
    P.S. Have been advised to try here when I originally asked this in the WebCenter forum. Web Center app ADF Security - login problem
    Edited by: new_to_webcenter on 18-Jan-2011 05:25

    Thanks for your response Frank.
    The web.xml has
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>valid-users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.html</form-login-page>
    <form-error-page>/error.html</form-error-page>
    </form-login-config>
    </login-config>
    When configuring ADF Security via JDev , I chose "Redirect upon successful authentication" to the Welcome Page
    "/faces/postLogin.jspx"
    this then adds into web.xml
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>/faces/postLogin.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    So the sequence which works is:
    Login via the '/adfAuthentication?login=true&end_url=/faces/postLogin.jspx' and this redirects to login.html (OOTB form which posts to j_security_check) and then to the postLogin.jspx
    I'm trying to do away with a Login link, and trying the simple login form embedded in my page alongwith other content.
    So should the form be posting to j_security_check directly or to the adfAuthentication ?

  • ADF Treetable scrolling position resets to top on refresh

    I have a master details page with the following components.
    TreeTable with a Check Box on LHS  and TabbedPannel on RHS.
    So, users can select any row on the LHS and the corresponding details will be displayed on RHS in a new Tab. When user closes the Tab it will clear the Check Box on TreeTable.
    Issue is, when user is at last row of TreeTable when there are more rows (Scroll bar will be at last), and user closes the Tab on RHS side, I will be clearing the checkbox binding and refresh the treetable using PPR to reflect the same.
    This is causing the treetable  scroll bar to be reset to the top. And User lost the old position on needs to scroll down again.
    Can we control the Scroll bar position after PPR refresh (or)
    Can we just clear off the CheckBox selection (only one row) with out refeshing the whole treetable
    Environment:
    JDev Version : 11.1.1.6.2
    Component : ADF TreeTable with TreeModel binding (Not using BC)

    In my case, I am fine with disclosureState items. They do not collapse even after I remove the checkbox selection and refreshing the TreeTable component.
    Only issue is scrollbar is resetting to top.
    I can't use the disclosure event as they can do expandAll , select first compoenent scroll down and close the selection on RHS tab.
    Which will reset the LHS scrolling position to top.

  • Photoshop elements problem

    everytime i try to edit in the photoshop elements 10 an error message appears saying "unable to continue because of a hardware or a system error, this problem is unrecoverable"

    it never worked and it is the first time for me to download pse10 and i tried reinstalling it and it never worked
    Date: Sun, 13 May 2012 15:15:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: photoshop elements problem
        Re: photoshop elements problem
        created by photodrawken in Photoshop Elements - View the full discussion
    OS version? Did PSE10 ever work?  If so, what changes did you make to your system, such as un-installing or installing any software or drivers? Ken
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4403690#4403690
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4403690#4403690. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Photoshop Elements problems

    I bought Photoshop Elements 10 in March and I have not been able to use it.  Photoshop Premiere Trial version will not load and the Inspiration Browser will not load.  Also any valuable help you get with this product, you have to pay for it (as if purchasing the product was not enough). I am very disappointed in this product and I actually want my money back. 

    I am not able to do anything in Photoshop Elements.
    Date: Tue, 4 Dec 2012 02:12:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: Photoshop Elements problems
    Re: Photoshop Elements problems created by domnic.rj23 in Photoshop Elements - View the full discussion
    Can you state the nature of the problem you are facing?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4894746#4894746
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4894746#4894746
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4894746#4894746. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Elements by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Af:treeTable delete problem

    Hi all
    Hi have a web application using Oracle Business Components; in some page i am using an af:treeTable component
    So far, i have been successfuly using it for any processes i have to develop; but something happens when i try to delete the last element of the first level of the control
    Let me explain:
    The treeTable component has n levels; the first level is the one that you navigate using the dropdown control or the Previous or Next commandLinks
    Lets assume that i have 4 elements at that level; when i delete any element it works fine, but when i delete the last element i get this error
    500 Internal Server Error
    java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
         at java.util.ArrayList.RangeCheck(ArrayList.java:546)
         at java.util.ArrayList.get(ArrayList.java:321)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel._getRowData(FacesCtrlHierBinding.java:96)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.enterContainer(FacesCtrlHierBinding.java:191)
         at oracle.adf.view.faces.component.UIXHierarchy.enterContainer(UIXHierarchy.java:80)
         at oracle.adf.view.faces.component.UIXTreeTable.processFacetsAndChildren(UIXTreeTable.java:410)
         at oracle.adf.view.faces.component.UIXCollection.decodeChildrenImpl(UIXCollection.java:141)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXCollection.processDecodes(UIXCollection.java:136)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at javax.faces.component.UIForm.processDecodes(UIForm.java:144)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at javax.faces.component.UIComponentBase.processDecodes(UIComponentBase.java:880)
         at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:306)
         at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:79)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    How can i fix this ???

    Hi all
    Hi have a web application using Oracle Business Components; in some page i am using an af:treeTable component
    So far, i have been successfuly using it for any processes i have to develop; but something happens when i try to delete the last element of the first level of the control
    Let me explain:
    The treeTable component has n levels; the first level is the one that you navigate using the dropdown control or the Previous or Next commandLinks
    Lets assume that i have 4 elements at that level; when i delete any element it works fine, but when i delete the last element i get this error
    500 Internal Server Error
    java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
         at java.util.ArrayList.RangeCheck(ArrayList.java:546)
         at java.util.ArrayList.get(ArrayList.java:321)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel._getRowData(FacesCtrlHierBinding.java:96)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.enterContainer(FacesCtrlHierBinding.java:191)
         at oracle.adf.view.faces.component.UIXHierarchy.enterContainer(UIXHierarchy.java:80)
         at oracle.adf.view.faces.component.UIXTreeTable.processFacetsAndChildren(UIXTreeTable.java:410)
         at oracle.adf.view.faces.component.UIXCollection.decodeChildrenImpl(UIXCollection.java:141)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXCollection.processDecodes(UIXCollection.java:136)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at javax.faces.component.UIForm.processDecodes(UIForm.java:144)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
         at oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
         at oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:673)
         at javax.faces.component.UIComponentBase.processDecodes(UIComponentBase.java:880)
         at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:306)
         at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:79)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    How can i fix this ???

  • File Upload element Problem

    Hello All,
    We have a problem regarding the File Upload button in Webdynpro.
    when we upload a file using this element and goto another view and comeback, the upload element is not showing any filename.
    But when debugged, the fileupload context node still has the data. Just it is not showing in the UI.
    Is it an existing problem with File Upload? Or do we have to do anything to make the filename visible.
    Thanks,
    Anand

    Hi,
    this works as designed, see the section on browser details <a href="http://help.sap.com/saphelp_nw70/helpdata/en/b3/be7941601b1d09e10000000a155106/frameset.htm">here</a>
    Regards, Heidi

  • ADF command link problem

    Hi All,
    I am using Jdeveloper 11g. I have a master-detail relationship tables Order and OrderItem. I have an Order edit page which has editable Order information and a ADF read-only table which contains a list of items associated with the current order. I have a ADF command link on the column LineItemId in the table. When I click the link, it will take me to the item edit page. The problem is, whenever I select any item in the table, I always got the first item loaded in the item edit page. Does anyone has any ideas what I did wrong?
    Here is the portion of the code related to the command link,
    <af:column sortProperty="LineItemId" sortable="false"
    headerText="#{bindings.OrderItemsView2.hints.LineItemId.label}"
    id="c4">
    <af:commandLink actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
    text="#{row.LineItemId}"
    disabled="#{!bindings.setCurrentRowWithKeyValue.enabled}"
    id="cl1" partialTriggers="::t1"
    action="goOrderItemDetail"/>
    </af:column>
    Thanks in advance,
    John
    Edited by: john wang on Aug 20, 2009 7:31 AM

    Hi Gurus,
    On a seeded page say Page1 one link is availabe which is specific to one Learning Path.
    When i click on that Learning Path's link it is redirecting me to a page say Page2 where it gives the list of different Learning Paths (including Learning Path of Page1) with a link for each Learning Path.
    If i click on that Learning Path's link it takes me to a page say Page3 where it gives the details of that perticular Learning Path.
    The requirement is , If I click on an Learning Path's link on Page1 ,it should redirect me directly to Page3 ( Skipping Page2 ).
    How can it be achieved?
    Please help!!!
    Thanks,
    Srinivas
    Edited by: ChandaS on Aug 20, 2009 8:02 AM
    Edited by: ChandaS on Aug 20, 2009 8:14 AM

  • Elements problem after divx codec install

    hi all,
    I am having an interresting problem and I am hoping someone can give me some advice.
    I have been running Premiere Elements 8 for a while and a it has been working fine. a few days ago I tried to install the divx codec. Now I open Premiere Elements and it will open, load my project, then minimize and I can not get it to restore.
    I have uninstalled divx but no luck.
    I also did a windows system restore to a previous state but had no luck there either.
    I am running Windows 7 64 Bit.
    on a quad core Intel Q6700 processor
    intel motherboard
    8 GB of Ram
    ATI FirePro V4800 (FireGL) Video card
    dual monitor.
    I am suspecting the codec updated a driver somewhere  that is causing a conflict.
    I had similar problems with Photoshop elements 8 and had to disable my twain drivers to get it to work.
    any comments or suggestions would be appreciated.
    thanks;

    Welcome to the forum.
    I have used the DivX CODEC, plus the DivX Pro Encoder for years, with zero issues, until the most recent update of DivX with both its CODEC and its player. Did not update the DivX Pro Encoder.
    First, these problems have not affected PrE 4.0, running on XP-Pro SP3, so there ARE many differences to your setup. With those differences, I am not at all sure that my observations will apply to your installation and your system.
    The only problem that I encountered was that the DivX player seized the File Type Associations for all AVI's, so that Dbl-clicking on any, would always Open them in the DivX player. The new one is filled with ads for all sorts of things, and reminds me of the old RealPlayer from years ago. Also, those ad often lead to a dead-end, from which the only recourse is to buy whatever the ad features, or go to Task Manager and Kill the process - really, really bad move DivX. All it took was going to Control Panel>Folder Options>File Type and changing the AVI associations back to my desired player, MediaPlayer Classic HC. Fixed.
    That was my only issue with any version of the DivX CODEC, or the DivX player. Still, I made note of it.
    That does not mean that on your system, and with PrE 8, something in there might not have broken.
    I would check the file associations in Control Panel, and reset any, that DivX Player might have changed, then test.
    While you are at it, also update both your video driver and your audio driver, from their mfgr. Web site.
    Good luck, and maybe others will have tips or suggestions.
    Hunt

  • ADF TreeTable One row data to create a master-detail parent-child relation

    I want to display an editable detail table on a page. The problem is the detail table has many fields so that the screen scrolls horizontally. I need my page to just fit on one page without scrolling.
    now my idea is to use a TreeTable. A lot of fields on the detail table will act as children of the main node so I can fit the table onto one screen without scrolling.
    So there is really no master detail relationship because Im referring to the same row data.
    Not the usual use case of using a Tree Table but just wondering if this is possible. I posted this hoping that anyone could shed a light on this.
    regards,
    Anton

    You can do that like in this example:
    http://apex.oracle.com/pls/apex/f?p=31517:278
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • ADF-BPM integration problem.

    Hi,
    1.I have a small scenario like integrate oracle ADF screen with Oracle BPM Human Task. we didn't use auto generate task form(we are using one adf application which is already developed in Oracle Adf technology).
    2.Those adf screen is populated in BPm work space using url of ADF screen placed in em console.It's fine,it will populated in work space.
    3.But my problem is we can click on the buttons approve or reject on populated adf screen then only human task will modify the running state to completed state.
    Any one have the idea on my requirement Please give the reply.
    (OR)
    Is there any other option can u please post the solution.
    1. My actual scenario is integrate oracle adf Screen with Oracle BPM humantask.(already devloped. note not an auto generate adf application).
    2.That screen Would be populated in BPM work space.So user login to BPM Work space And click on the tabs Reserved or cancel on populated adf screen.
    3.Then only the human will be the state like running to completed state.
    Edited by: Alluri.S.Raju on Dec 6, 2012 12:45 AM

    Hello Rudra Raju,
    Did u get the solution...
    Even iam looking for the same..
    Also I need to pass the Employee ID from Human task to ADF UI So that the User can download the file based on the Employee ID.
    ThankQ!!

  • Adf TreeTable,  collapsed and expand property.

    Hi,
    I want to set some instructional text on UI based on whether af:treetable row is expanded or collapsed. Is there any property that I can use on UI that give this information?
    I am using adf, Oracle JDeveloper 11g.
    Thanks
    -Rishabh

    Hi Frank,
    In Treetable I have two columns and one column in nodeStamp. For example, node column show name of "application", second column show names of scholarships and the third column has commandbutton to apply for that application. Each row in application can be expanded to see list of scholarships attached to that application. Here is the code for this....
    <af:treeTable value="#{bindings.SaAppListVO1.treeModel}"
    var="node"
    selectionListener="#{bindings.SaAppListVO1.treeModel.makeCurrent}"
    id="treeTable" expandAllEnabled="true" rowBandingInterval="0"
    width="94%" columnStretching="column:application"
    columnBandingInterval="0"
    disableColumnReordering="true"
    summary="List scholarships attached to application"
    rendered="#{ bindings.SaAppListVO1.estimatedRowCount > 0}">
    <f:facet name="nodeStamp">
    <af:column headerText="Application"
    id="application">
    <af:outputText value="#{node.AppName}"
    rendered="#{node.AppId1 ne null}"
    inlineStyle="font-size:12px; font-weight:bold;"/>
    </af:column>
    </f:facet>
    <f:facet name="pathStamp"/>
    <af:column headerText="Scholarships" width="300" noWrap="false">
    <af:panelGroupLayout layout="horizontal">
    <af:goLink styleClass="csaLink" text="#{node.ScholarshipsName}">
    <af:showPopupBehavior triggerType="click"
    popupId="::notewindow"/>
    </af:goLink>
    <af:image shortDesc="Need-Based"
    source="/images/gold.png"
    rendered="#{node.IsNeedBased == 'y'}"
    inlineStyle="text-align:left;"/>
    </af:panelGroupLayout>
    </af:column>
    <af:column align="center">
    <af:commandButton text="Apply!"
    rendered="#{node.AppId1 != null}"
    action="apply_new">
    <af:setPropertyListener from="#{node.AppId1}"
    to="#{pageFlowScope.appId}"
    type="action"/>
    </af:commandButton>
    </af:column>
    </af:treeTable>
    My question here is, where node row is in collapsed mode there is nothing in "scholarship" column. And when it is expanded it list all the scholarship. What I want is to add a text message in that column showing how many scholarships are there for that application in collapsed mode.
    Is there any way for doing this?
    Thanks,
    -Rishabh

  • ADF 12c Rendering Problems at design time

    Hi all,
    I am experimenting the following unexpected rendering problems at Design time with JDEV 12c:
    -  Sometimes a complete page is showed empty or blank but the components exists on the page (you can see them in the structure panel) and the page has no warnings.
    -  Sometimes I cannot click a component because it is behind the container.
    -  Sometimes the containers are rendered in other place on the page.
    -  Sometimes the containers not stretching
    I remember some posts about this problem in 11.1.2.x but I think it was not fixed in 12c. For this reason, I have some questions:
    What is the "real" memory requirement  of Jdev 12c to avoid render problems?
    What is the best configuration in jdev.conf?
    Is it only a memory issue or Is it also a dependency reference problem? According to a blog post of Frank Nimphius:
    Though with Oracle JDeveloper 11g the problem of the IDE not rendering JSF pages properly in the visual editor has become rare, there always is a way for the creative to break IDE functionality. A possible reason for the visual editor in JDeveloper to break is a failed dependency reference, which often is in a custom JSF PhaseListener configured in the faces-config.xml file. To avoid this from happening, surround the code in your PhaseListener class with the following statement (for example in the afterPhase method)
    public void afterPhase(PhaseEvent phaseEvent) {   if(!ADFContext.getCurrent().isDesigntime()){ ... listener code here ... } }
    The reason why the visual editor in Oracle JDeveloper fails rendering the WYSIWYG view has to do with how the live preview is created. To produce the visual display of a view, JDeveloper actually runs the ADF Faces view in JSF, which then also invokes defined PhaseListeners. With the code above, you check whether the PhaseListener code is executed at runtime or design time.If it is executed in design time, you ignore all calls to external resources that are not available at design time.
    source:
    https://blogs.oracle.com/jdevotnharvest/entry/when_jdeveloper_ide_doesn_t
    if it is a known problem, then Why is not fixed in 12c?
    Jhon
    Jdev 12c

    Jhon, what Frank mentioned can't be fixed from the outside. You or the developers who use phase listens without thinking about the design view are the ones to fix this. Frank provided you with the solution for this.
    However, we don't know if you use any self written phase listener. If you don't do this you have another problem. I do see some of your symptoms but can't reproduce them at the moment. As long as we can't reproduce the problem somehow it's difficult to to get a solution.
    My advise is to keep your eyes open (add I do) and whenever you can reproduce this behaviour come back and tell us about it. It's hard or impossible to give the 'best' settings for Jdev.conf as they depend on other factors e.g. operating system, memory, other applications running at the same time and many more.
    Personally I don't change the parameters as long as I can't put the problems to low memory (which I can't at the moment).
    Timo

  • TP4 reusing ADF library migration problem

    Hello,
    I have an application containing multiple Business Components and View Controller projects.
    Common functionality is shared as ADF library between view controller projects. The applicatio was created with TP3 and is working just fine. When ported to TP4, it seems that part of the functionality shared as ADF library is not working.
    To be more specific: the login page is using a backing bean to check the authentication details against the database. The following code is working properly:
            appModule =
                    (ApplicationModule)((DCBindingContainer)getBindings()).getDataControl().getApplicationModule();But, when accessing the BC module from a phase listener using the following code:
            DataControl dc = event.getLifecycleContext()
                .getBindingContext()
                .findDataControl("SharedModuleDataControl"); DataControl is null.
    The same phase listener is working properly when used within the project it was created (and not as imported ADF library)
    Once again, this is happening with TP4, with TP3 everything is working fine.
    Thanks,
    Florin Marcus

    Gabrielle,
    The root of the problem is that JDeveloper makes a copy of the adf-faces-impl.jar in the WEB-INF\lib directory in your project directory. So what was happening is the project contained to old version of this library that still referenced the "selected" attribute. When you built and then ran the project against the new runtime libraries that no longer had this "selected" attribute, the error occurred.
    So the solution to this problem would be for JDeveloper to not copy these libraries into your project directory or to detect that the version has changed and warn you or prompt you to copy the libraries again.
    Jim

Maybe you are looking for

  • I need Fusion help creating a demo of BRM JCA Resource Adapter

    I need Fusion help creating a demo of BRM JCA Resource Adapter. I know BRM well but am clueless with Fusion. I am trying to figure out what Fusion products to download and install and how I manipulate the Fusion side to manipulate BRM. My BRM docs sa

  • Can not transfer WMA audio books to new iPhone 4S

    I got a new 4S and went to sync it in iTunes and got a message saying I had to load the latest version of iTunes and went ahead and did it and it worked fine.  No issues and all synced and got all of my apps music and pictures!!  Then i went to trans

  • AR Ageing Report

    Hello, I have APPS 10.7 SC I need to generate Ageing report in AR, as the parameter of Customer Outstanding amount more than or between criteria. For eg: I wanted to generate the Ageing based on Customer total outstanding amount between $10,000 and 2

  • Cffileupload get rid of upload box

    Okay, everything works EXCEPT the notification that the file upload is complete.  The cffileupload box just stays where it is. I have even tried to send it to another page and it won't go. I have this code on my testing.cfm page right now. <cffileupl

  • WebApp: Embedding a PDF

    Hello! I don't have a apple dev's account to access the dev forum. I have a question about developing web pages for the iPad. If I wish to embed a PDF file, should I use the <object> tag? Right now I have: <object data="pdftest.pdf" type="application