Component not working

JDEV 11.1.1.2.0 with adf 11g
i have thow the exception in button commandToolbarButton of actionListener, after throwing exception , button commandToolbarButton working is stop , how to resolve , please help me,
regards,

Hello all,
I am facing an issue with CommandToolbarButton. On Click of the button, I am not able to call the actionListener backingbean method. I have default PartialSubmit true and immediate to false. It does not throw any error but just does not call the method. Here is the code :
<af:commandToolbarButton id="commandButton1"
actionListener="#{backingBeanScope.xxxBean.addRecord}"
icon="/add.gif"
shortDesc="#{ViewControllerBundle.ADD}"
partialTriggers="t5" immediate="false"/>
However, with similar code on another fragment, I am able to call the action listener.
Can anyone let me know what the issue could be with the component not working on this page ?
Thanks,
Victor

Similar Messages

  • The itunes ogg drop X component not working

    Hi there,
    I installed the itunes ogg drop X component not working from Ogg Drop X 1.0b5 and rebooted.
    I still cant play ogg streams. they play fine in a VLC player so I know they work.
    any body get the Ogg Drop X 1.0b5 itunes component working. How do I get it goin'?
    Cheers

    no response.

  • Searchspec on Siebel Integration Component not working

    Hi All,
    Has anyone successfully applied the user property 'searchspec' on a Integration Component?
    I have tested but it's not working for me. I have seen that this user property exist on some of the standard vanilla ICs.
    Regards,
    Hakan

    I agree, we have not been able to get it to work. What you're supposed to be able to so is pass the SearchSpec as a parameter through the web service so the web service will apply that spec to the IO when querying, but that also does not work (though it's supposed to). I have an open ticket with Oracle and they are identifying the issue as we speak.

  • Embeded Flash component not working

    I have createdf a Flash movie using the Drag & Drop
    Learning Interactions Component using Flash MX 2004. The
    interaction works fine as standalone Flash movie but when embedded
    in an Adobe Presenter presentation, the drag works ok but it will
    not drop the object. I have had the Breeze control the Flash movie
    and also Breeze not control the movie.
    Any ideas?

    Hi Conrad!
    As you have no doubt already realized, using the Learning
    Interaction templates that are available in Flash MX / MX2004 and 8
    will not work at all in Presenter content.
    The coding methods conflict while playing back within the
    Breeze environment and I
    think it has to do with the _dropTarget property as part of
    the interaction's codebase. The _dropTarget method is NOT supported
    in Breeze, but the hitTest() method IS!
    I have written a few drag and drop exercises that do work
    within Breeze content, and you have to use the hitTest() method to
    accomplish it.
    As you already have discovered, the bottom line is that the
    learning components were intended to be "stand alone" objects that
    could be incorporated into a web page (or even a CD as these
    objects are nothing more than swf files). Aside from the fact that
    the prebuilt/preconfigured learning objects in flash don't always
    work in Breeze, in my mind, the bigger question here is the ability
    (or more accurately) the inability to connect these SCO's to an LMS
    for tracking. As stand alone objects, they're actually pretty
    handy...but not in Breeze.
    I realize this doesn't help much with what you're trying to
    do, but from my perspective, you're better off creating your own
    drag n' drops.
    I've got a bunch of examples to share if you'd like to take a
    look...just send me a PM or email if you're interested.
    Rob
    [email protected]

  • ADF:LOV declarative component not working inside table component.

    Hi,
    I have created a custome LOV control,I am using this custom LOV control inside the table component,I am passing the below values as the parameter
    KeyValue="#{row.bindings.Value.inputValue}"
    LovModel="#{row.bindings.Value.listOfValuesModel}"
    Value- is the list of value attribute.
    When i click on the LOV search icon, the popup displays the Query model(it displays the list name at the top in the search page.so it is able to recognise the LOVmodel) but it is not able to retrive the list values.I am getting Query page with no values
    in the jspx page it is giving warning as "reference not found for row.bindings.Value.listOfValuesModel"
    Please can anyone help me on this?
    Thanks,
    Harish

    Hi Frank,
    below is my actual requirement and the solution i tried till now.
    I have a table and it has two columns let’s say “Columns” and “Values”. The first column i.e. “Columns” will be a dropdown and it will have predefined values, the other column “Values” will be a “List of value” control or similar kind of control in which the user can search and select multiple values from the popup list, and that list should dynamically bounded to the first column selected value.
    For Ex: if I select a value “Product” from the dropdown of the first column “Columns” , the control in the other column “Values” should bound to “product” list and I should be able to search and select multiple values from the pop up. And the popup should return the multiple selected values as a comma separated string to the textbox.
    In my requirement I have to use only VO’s to create the list and the control in the “Values” column should switch between these VO’s depending on the value selected in the first column.
    The solution we tried till now.
    I used a LOV switcher to achieve the above requirement. But we have a limitation in this approach as we could not do the multi select. Then we created a declarative LOV component in which we can select multiple values as a comma separated string from the popup.
    I retained the LOV switch model , instead of binding LOV switch model to the basic “Input List of Value” control in the JSPX page ,I used the LOV declarative component. Below is the code snippet which calls the declarative LOV component from JSPX page.
    <af:panelFormLayout id="pfl2">
    <af:selectOneChoice value="#{bindings.Columns.inputValue}"
    label="#{bindings.Columns.label}"
    required="#{bindings.Columns.hints.mandatory}"
    shortDesc="#{bindings.Columns.hints.tooltip}"
    id="soc3" autoSubmit="true">
    <f:selectItems value="#{bindings.Columns.items}" id="si5"/>
    </af:selectOneChoice>
    <mc:OraMultiSelect
    KeyValue="#{bindings.Value.inputValue}"
    LovModel="#{bindings.Value.listOfValuesModel}"
    id="oms2"/>
    </af:panelFormLayout>
    Where Value attribute is having LOVModel.
    The above code perfectly fine as I used it inside the “Form layout” and with the parameters passed as KeyValue="#{bindings.Value.inputValue}"
    LovModel="#{bindings.Value.listOfValuesModel}"
    The problem I am facing:
    The actual problem comes when I use this control inside the table which I required in my implementation.
    I called the declarative LOV control as shown below inside the table as I used to call the basic “Input List of value” control which works fine inside the table.
    . <af:column sortProperty="Value" sortable="false"
    headerText="#{bindings.OpPlanning1.hints.Value.label}"
    id="c1" width="133">
    <mc:OraMultiSelect KeyValue="#{row.bindings.Value.inputValue}"
    LovModel="#{row.bindings.Value.listOfValuesModel}"
    id="oms1"/>
    </af:column>
    Above code doesn’t works fine when I select value from the “Column” dropdown it displays the corresponding list model in the pop up but not able to retrieve the value of the list in the popup .
    If I pass the parameters as
    . <af:column sortProperty="Value" sortable="false"
    headerText="#{bindings.OpPlanning1.hints.Value.label}"
    id="c1" width="133">
    <mc:OraMultiSelect KeyValue="#{bindings.Value.inputValue}" --instead of ="#{row.bindings.Value.inputValue}"
    LovModel="#{bindings.Value.listOfValuesModel}"--}" --instead of ="#{row.bindings.Value.inputValue}"
    id="oms1"/>
    </af:column>
    It works fine for the first row.The subsequent rows refers the value selected in the first row dropdown.
    Thanks For the help,
    Harish
    Edited by: 886523 on Nov 3, 2011 8:04 AM

  • Tree component not working in a mask

    I have been having problems displaying the labels on tree
    component , I have now found the cause it was in a mask.
    Once I moved it out of the mask it worked fine!!. But the
    thing is now how do I get it to work in a mask????
    You can test this for yourself by opening the
    gallery_tree.fla in \Flash 8\Samples and adding a layer making it a
    mask (and making a box around the whole thing).
    I need to use the tree in a mask as it is part of a bigger
    picture.
    Thanks for the help
    BP

    I'm not sure if that will help, but you can try to set the
    mak at runtime (MovieClip.setMask()) - I'm not even sure if that is
    "leagal" with components, but setting a (rectangular) mask wia
    actionscript is the only way to mask device text, and that should
    be part of your component.
    Watch out rot problems of depths-order though, as depth
    management with component (v2) is different from "normal" depth
    management.

  • Mpeg-2 component not working

    Hello,
    I have some footage that requires the mpeg-2 component. As I do not have final cut I bought this off apple and installed, but it doesn't work. I have searched many forums and followed the advice and made sure it is in the right folder but nothing works.
    How do I get this to work?
    thanks.

    When I open them in Quicktime 7 or 10 it says additional software required and it comes up black but with sound. Mpeg streamclip it comes up white and with sound. I have tried the vlc player and it does work on that, but I have had problems in the past with converting movies to usable footage so this isn't a solution. I know that this can work as have read lot's of posts hwere it is resolved but none of the solutions work for me. I think maybe it's the type of mpeg-2 component I have.
    The format of the footage is MPEG-2 Video, Linear PCM, Timecode.
    thanks.

  • Related Content component not working

    I have this component in the list of Enabled components on my Oracle CMS, but I am not able to execute this service.
    I don't see any related content links information in the doc info page.
    Should I try to disable and enable the component or completely reinstall it.
    If I do reinstall it , would the content that are related to each other still retain their associations?

    Hi Jason,
    Yes the FXP file worked. There is something about my project that Flex doesn't like.
    I do not get any errors like those described in the bug. It just doesn't do anything when you type the dot.
    I do have a library from a loaded swf, but it all works. I also described my project to have two component directories. Please see previous post.
    Could this be the problem?
    And, could you please tell me how to find my "workspace" directory.
    And, one more thing...
    Could you please let me know how to "try a clean workspace". I'm tempted to merely delete the project, leaving the files, then re-import.
    Thanks,
    Shannon

  • Adding an Icon to a JButton Component - Not working

    Hi all,
    Please help me by saying, why the below gevon SSCE doesnt work.
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import javax.swing.AbstractAction;
    import javax.swing.AbstractButton;
    import javax.swing.Action;
    import javax.swing.BorderFactory;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.UIManager;
    public class CreateWindow {
        public CreateWindow(String module, String id){
             if(module.equals("mail")){
                  JPanel mail = new JPanel(null);
                  mail.setPreferredSize(new Dimension(500, 350));
                  //Color colr = new Color(222, 236, 255);
                  mail.setBackground(Color.WHITE);
                  JLabel file = new JLabel("File Name:");
                  file.setBounds(18,25,75,50);
                  // Retrieve the icon
                 Icon icon = new ImageIcon("ei0021-48.gif");
                 // Create an action with an icon
                 Action action = new AbstractAction("Button Label", icon) {
                     // This method is called when the button is pressed
                     public void actionPerformed(ActionEvent evt) {
                         // Perform action
                 // Create the button; the icon will appear to the left of the label
                 JButton button = new JButton(action);
                  mail.add(button);
                  buildGUI(mail,500, 350);
        public void buildGUI(JPanel panel, int width, int height)
            JFrame.setDefaultLookAndFeelDecorated(true);
            UIManager.put("activeCaption", new javax.swing.plaf.ColorUIResource(Color.LIGHT_GRAY));
            JFrame f = new JFrame("Propri�t�s:");
            f.setIconImage(new ImageIcon("save.gif").getImage());//need an image file with black background
            changeButtonColor(f.getComponents());
            f.getContentPane().setBackground(Color.WHITE);
            f.getContentPane().add(panel);
            f.getRootPane().setBorder(BorderFactory.createLineBorder(Color.PINK,2));
            f.setSize(width,height);
            f.setLocationRelativeTo(null);
            f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            f.setVisible(true);
          public void changeButtonColor(Component[] comps)
            for(int x = 0, y = comps.length; x < y; x++)
              if(comps[x] instanceof AbstractButton)
                ((AbstractButton)comps[x]).setBackground(Color.LIGHT_GRAY);
                ((AbstractButton)comps[x]).setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY));
              else if (comps[x] instanceof Container)
                changeButtonColor(((Container)comps[x]).getComponents());
    }I call the above given class constructor as given
    public class Test {
         public static void main(String args[]){
              CreateWindow cw = new CreateWindow("mail","Test.doc");
    }Rony

    RonyFederer wrote:
    I have the images and class files inside
    F:\Testing3\Application\src\booodrive
    Do you have the class files or java files here?
    You should put the gif where the .class files are located, and use getResource as Encephalopathic wrote, or:
    Icon icon = new ImageIcon(ClassLoader.getSystemResource("ei0021-48.gif"));
    When I did as you said using System.out.println(new File("ei0021-48.gif").getAbsolutePath());, I got the following output.
    F:\Testing3\Application\ei0021-48.gif
    That's the current running directory.

  • Video Component not working in CQ5 5.5

    Hi All ,
    I have done the installation of the ffmpeg for trans-coding video,changed the environment variable .
    i have also test the video in the First profile "Firefox HQ ogg" it is successfully transcoding and running successfully in FF through http://localhost:4502/etc/dam/video/hq.html but when i drag and drop the video in the video component provided in sidekick.it is not even buffering.I have also checked the design mode and set the profile to "Firefox HQ ogg". but no luck
    any body have any idea???
    Thanks in advance
    Regards
    Anav Mahajan

    This forum is for Adobe Connect, a web collaboration tool. I recomend you post this question in the Experience Manager (formerly CQ5) forum: http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experie nce-manager.html

  • Transfer Function Block Component not working properly

    When using a Transfer Function Block, and you enter in the polynomial coefficients for a simple RC Passive Low-Pass Circuit, and perform an AC analysis side-by-side to its circuit equivalent, it works great.  The 2 frequency response waveforms are identical.  However, when you add another RC Low-Pass section in cascade with the 1st one, making it a 2-pole RC Passive Low-Pass Circuit, and you put its polynomial coefficients into the transfer function block the results of the AC Frequency Response is not identical to its 2-pole circuit equivalent.  I double checked my math to make sure my transfer function math was correct.  Since 2 transfer functions are in cascade, the transfer function from the 1st RC stage is multiplied times the transfer function of the 2nd RC stage, and the result is the overall transfer function.  I even went as far as creating 2 transfer function blocks, each of them, with a single RC transfer function and connecting them in a cascade fashion.  The results were the same....the trasnfer function block(s) do not resemble their circuit equivalent models for a >=2pole Passive RC Low-Pass filter.

    The transfer function of a RC ist not retroactively-free, this is the reason why the transfer function of 2 RC Circuits is not 1 / (1 + RC*s)^2 ! You can not multiply the one function of one RC with the other!
    You have to solve the differential equation of the RC circuits, to get the real transfer function.

  • Custom barcode component not working properly

    package jpicedt.graphic.view;
    import jpicedt.graphic.model.*; // all elements + drawing
    import jpicedt.graphic.PECanvas;
    import jpicedt.graphic.PicPoint;
    import jpicedt.graphic.PicVector;
    import jpicedt.graphic.PEToolKit;
    import jpicedt.graphic.event.PEMouseEvent;
    import jpicedt.graphic.event.DrawingEvent;
    import jpicedt.graphic.jbarcodebean.*;
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.awt.image.BufferedImage;
    public class BarcodeView extends AbstractView {
         private PicPoint ptUL = new PicPoint(); // buffer
         private PicPoint ptLR = new PicPoint(); // buffer
    private Barcode barcode = null;
    protected TextLayout textLayout;
    protected AffineTransform tl2ModelTr=new AffineTransform();
         * construct a new View for the given PicGroup
         public BarcodeView(Element e){
              super(e);
              changedUpdate(null);
         * Give notification from the model that a change occured for an element this view is responsible
         * for rendering. This implementation update the view's bounds from the element's bounding box,
         * delegating highlighter's bounds to the current Highlighter delegate..
         public void changedUpdate(DrawingEvent.EventType eventType){
              Rectangle2D oldClip = bounds;
              // update bounds
              bounds = element.getBoundingBox(null); // => null if branchElement is empty !
              if (highlighter!=null) {
                   double s = 1.0;
                   PECanvas canvas = getContainer();
                   if (canvas != null) s=canvas.getScaleFactor();
                   highlighter.changedUpdate(eventType,s);
                   if (bounds!=null) bounds.add(highlighter.getBounds());
              // if event == ADD/REMOVE/REPLACE child, don't bother, just repaint it all :
              if (eventType==null || eventType != DrawingEvent.EventType.GEOMETRY_CHANGE) repaint(null);
              else {
                   if (oldClip!=null) {
                        if (bounds!=null) oldClip.add(bounds);
                        repaint(oldClip);
                   else {
                        if (bounds!=null) repaint(bounds);
                        // else branchElement was empty, and is still empty : do nothing
         * Render the View for the graphic element to the given graphic context. This called "paint"
         * on each child's view if its bounds rectangle intersects the clip.
         * @param allocation the current graphic clip
         public void paint(Graphics2D g, Rectangle2D a){
              if (!a.intersects(getBounds())) return;
              Element be = (Element)element;
    Barcode bar=(Barcode)be;
    //bar.getBarcode()
    //new JBarcodeBean(bar.getBarcode(), new Code39());
    //System.out.println("in Barcodeview paint bar.getBarcode()=========="+bar.getBarcode());
    System.out.println("in Barcodeview paint Graphics2D=========="+g);
              System.out.println("in Barcodeview paint element=========="+be);
              //for(Iterator it=be.children(); it.hasNext();){
    View v = be.getView();
    System.out.println("in Barcodeview paint view=========="+v);
    //for(Iterator it=be.children(); it.hasNext();){
         //          View v = ((Element)it.next()).getView();
         //          if (v!=null) v.paint(g,a);
              AffineTransform oldAT = g.getTransform();
                   // paint text in black
                   g.setPaint(Color.black);
                   // from now on, we work in Y-direct (<0) coordinates to avoid inextricable problems with font being mirrored...
                   //g.transform(oldAT); // also include rotation
    try{
    barcode=BarcodeFactory.create3of9("123456789012",true) ;
    barcode.setBarHeight(100);
    barcode.setBarWidth(100);
    barcode.draw(g, 600,600);
    }catch(BarcodeException bex){System.out.println("create barcode error:\n"+bex.toString());}
         * @return a HitInfo corresponding to the given click-point in model-coordinate.
         public HitInfo hitTest(PEMouseEvent e){
    System.out.println("at barcodeview hitText");
              PicPoint ptClick = e.getPicPoint();
              // test hit on children, highlighted or not, from top to bottom :
              BranchElement be = (BranchElement)element;
    System.out.println("barcodeview hitText BrancheElement be="+be);
              for(int i = be.getChildCount()-1; i>=0; i--){
                   Element o = be.getChildAt(i);
                   if (o.getView().hitTest(e,false)!=null) return new HitInfo.BarcodeComposite(be, i, e);
              return null;
    } // BarcodeView

    So whats the question??? What is it supposed to do if it works properly
    And by the way please put the code tags around your code (see Formatting help link on the page);

  • Emptying the shuttle component not working

    Hi all,
    I am using Jdev 12c. My requirement is to provide user with a Shuttle component in the Popup > Dialog Box and when the user clicks on OK on the Dialog Box, fill the selected values in the Text box on the main page.
    This works fine for me till I try to empty the already selected values from the shuttle component using '<<' option on the Shuttle component and press OK. I get an exception from 'FacesCtrlListBinding.java' file, saying null pointer exception. Following is the exception trace.
    I have shifted my project from Jdev 11g to 12c in between project development, could that be a cause here?
    Thanks!
    Exception Trace:
    Header 1
    <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50016> <ADFc: While handling an exception the application's exception handler threw a new exception.
    java.lang.NullPointerException
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.findObjectFromIndex(FacesCtrlListBinding.java:355)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.getInputValue(FacesCtrlListBinding.java:216)
      at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGet(JUCtrlValueBinding.java:2475)
      at oracle.jbo.uicli.binding.JUCtrlListBinding.internalGet(JUCtrlListBinding.java:3926)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.internalGet(FacesCtrlListBinding.java:499)
      at oracle.adf.model.binding.DCControlBinding.get(DCControlBinding.java:751)
      at javax.el.MapELResolver.getValue(MapELResolver.java:199)
      at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
      at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
      at com.sun.el.parser.AstValue.getValue(AstValue.java:138)
      at com.sun.el.parser.AstValue.getValue(AstValue.java:183)
      at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:224)
      at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
      at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:73)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.getProperty(UIXComponentBase.java:1734)
      at org.apache.myfaces.trinidad.component.UIXValue.getValue(UIXValue.java:79)
      at org.apache.myfaces.trinidad.component.UIXEditableValue.validate(UIXEditableValue.java:211)
      at org.apache.myfaces.trinidad.component.UIXEditableValue._executeValidate(UIXEditableValue.java:724)
      at org.apache.myfaces.trinidad.component.UIXEditableValue.processValidators(UIXEditableValue.java:337)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1400)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1385)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:1152)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:1400)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.validateChildren(UIXComponentBase.java:1385)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.processValidators(UIXComponentBase.java:1152)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ProcessValidationsCallback.invokeContextCallback(LifecycleImpl.java:1602)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1984)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:222)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:156)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1942)
      at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:594)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:156)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:156)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1876)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1999)
      at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1426)
      at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:669)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:426)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      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:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    Hi Bala,
    Following is the PageDef XML file code.
    Header 1
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="12.1.2.66.68" id="XYZPageDef"
                    Package="fragments.Management">
      <parameters/>
      <executables>
        <variableIterator id="variables"/>
        <page path="page_template.ManagementTemplatePageDef" id="ptb1" Refresh="ifNeeded"/>
        <iterator Binds="StorageClassLOV" RangeSize="25" DataControl="ManagementAMDataControl" id="StorageClassLOVIterator"/>
      </executables>
      <bindings>
        <list IterBinding="StorageClassLOVIterator" ListOperMode="multiSelect" ListIter="StorageClassLOVIterator"
              id="StorageClassLOV" SelectItemValueMode="ListObject">
          <AttrNames>
            <Item Value="StorageClass1"/>
          </AttrNames>
          <ListDisplayAttrNames>
            <Item Value="StorageClass1"/>
          </ListDisplayAttrNames>
        </list>
      </bindings>
    </pageDefinition>

  • Tinymce declarative component not working when added with PPR

    I have a declarative component that i exposed in a resource catalog.
    This component uses <af:resource> to inject javascript in the page.
    the problem that i have is when in editing mode, and you add the component. the components <af:resource> is not yet injected and i have to manually refresh my browser to see the effect.
    I am trying to integrate TinyMCE as a component.
    This problem occurs because when you click the add button it does a PPR.
    If i load a page where my component was already on, I don't have this problem.
    I also tried a refresh commandButton, but because forcePPR is configured in the web.xml and I may not change this, it is not executed correctly.
    Any ideas to solve this, or a workaround would be helpful?
    thanks in advance
    <af:group id="dc_g1">
          <af:commandButton text="refresh"
                            actionListener="#{backingBeanScope.tinymceBean.addScripts}"/>
          <af:resource type="javascript" source="/tiny_mce/tiny_mce.js" />
          <af:resource type="javascript" source="/tiny_mce/config.js" />
          <af:inputText simple="true" value="#{attrs.value}" styleClass="AFStretchWidth"
                        id="dc_it1" rows="2" />
          <af:resource type="javascript" text="initTiny();" />
        </af:group>

    Try collecting a Process Monitor trace https://technet.microsoft.com/en-us/sysinternals/bb896645 to check what is the Access is being Denied on.
    Windows Store Developer Solutions, follow us on Twitter:
    @WSDevSol|| Want more solutions? See our blog

  • Scroller Component not working with TabbedViewNavigator Component (Flex Mobile)

    SETUP:
    -The Application itself is a MobileApplication, not TabbedMobileApplication.
    -One of my pages/views (we'll call it "TabbedPage") incorporates the TabbedViewNavigator component, which calls on two other pages/views in my "views" folder; we'll call them "TabbedPageOne" and "TabbedPageTwo"; the other pages within the application are just regular View pages with components on stage, including a page that also incorporates the Scroller component, which functions properly without a hitch.
    -TabbedPageOne incorporates a Scroller component (followed by a VGroup component as required) that is constrained to the whole screen (left, right, top, & bottom all equal "0").
    -At runtime (on my desktop and device), when I navigate to the TabbedPage page -- consisting of TabbedPageOne & TabbedPageTwo -- the Scroller component will not scroll.
         ---Sidenote: I filled the page with components like buttons and labels to fill the page to the point of activating the scroll function, and although the buttons were still functioning (meaning they still respond to touch events), the Scroller still did not function.
    Is there something I'm missing or doing wrong, or is this a glitch within the Flex Framework?
    You help would be greatly appreciated!

    Sure!
    --------------------------------------------------- MAIN.mxml ------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:MobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"backgroundColor="
    #FFFFFF" firstView="views.TabbedPage"frameRate="
    60"splashScreenImage="
    @Embed('splashScreen.jpg')">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
    </s:MobileApplication>
    -------------------------------------------------------------- TABBEDPAGE.mxml ---------------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:View  xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"actionBarVisible="
    false" tabBarVisible="false" title="TabbedPage">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <s:TabbedViewNavigator left="0" right="0" top="0" bottom="0">
     <s:ViewNavigator label="One" firstView="views.TabbedPageOne"/>
     <s:ViewNavigator label="Two" firstView="views.TabbedPageTwo"/>
     </s:TabbedViewNavigator>
     </s:View> </s:MobileApplication>  
    ---------------------------------------------------------------- TABBEDPAGEONE.mxml ------------------------------------------------------------------------
    <?xml version="1.0" encoding="utf-8"?><s:View  xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="
    library://ns.adobe.com/flex/spark"actionBarVisible="
    false" tabBarVisible="true" title="TabbedPageOne">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <s:Label x="0" y="0" width="420" height="76" color="#000000" text="One"/>
     <s:Scroller left="0" right="0" top="40" bottom="0">
     <s:VGroup x="0" y="0" width="100%" height="100%">
    <!-- I just created these buttons so that the page scrolls--><s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
    <s:Button label="Button"/>
     </s:VGroup>
     </s:Scroller></s:View>

Maybe you are looking for

  • How do I allow non-Apple software to install in OS 10.8.4?

    I've just installed Mountain Lion on an iMac (27", mid-2011) and want to install some some software I've downloaded from a reputable third-party developer. Problem is, I get an error message that tells my security preferences only allow apps from the

  • Download error on PDFs--can't find helper--please help!

    Hi, I'm trying to use USPS.com to print labels. It used to work great for me until I downloaded the newest Firefox version and also installed the new CS3. I have Mac OS 10.5. When I go make a label at USPS (or try to download any PDF), I get an error

  • Unable to enter Acquisition & Accu Dep values in AS91 since fields are grey

    Hi Friends, I am not able to enter the acquisition & accumulated values in AS91 as the fields are disabled.My capitalization date i am entering is 01.01.09 which is prior to transfer date.I have done the following to ensure entry via t code AS91. 1.

  • Alv. problem in I_call

    Hi Gurus,             Problem in this program.plz check it its very urgent. im working in version 4.6. the problem is in I_call_back.plz help me in this. Correct answers will be appreciated with good points. Thanks & regards sunita TABLES : likp. TYP

  • Integrate SAP TEM with MSS

    Hi Experts, Please provide me some links to integrate SAP TEM and Performance Management with MSS. Whether these views are available in the standard business package?, If yes, olease tell which iView should I use. Regards / Guru