Popup button - not consulted ActionListener

Hi, I work with the JDeveloper 11.1.1.6.0.

I have a vision in a popup. Which creates a new empty line, if it is not found any data in the database. So far so good.
When I know enter some values and then click a button command values must be filled in the VO and EO and also committed themselves to the DB.
I have to do it in an ActionListener, because I set a value programmatically, because they come from the calling page and it could not be seen by the user.

Then, when I now click on the button, the pop-up window disappears, but the ActionListener had not entered. I tried via debugging and at points and some outputs, but not more that they are achieved. I have to do something more to reach the listener to perform my actions?

Thanks in advance.
Alex.

And what happens if you use the af: dialog instead of af: panelWindow as I suggested?

Tags: Java

Similar Questions

  • Error popup does not appear when an exception is thrown

    Hello! I m working in an EJB - ADF application. I have a page where I try to delete an entity that is referenced by other entities in the database, so that an ORA-02292 exception is thrown. When this happened, a popup used to be displayed in the application with the error message. This is the behavior I want. However, my isn´t application showing the popup more. When I push the button Delete the exception is thrown and showed in the jdeveloper Journal, but the popup does not appear.
    I Don t remember doing any changes that may be causing this situation. It requires a configuration to make the popup is displayed?
    I m don't know if it was exactly when the problem started, but I ve spent 11.1.1.2 to 11.1.1.3 in the last days.

    Thanks in advance.

    Looks like it is related to this problem of model - level exceptions unexercised (EJB, 11.1.1.3)

    Pedja

  • The attachment popup is not displayed for webmail like Yahoo or Google after Firefox updated to version 30

    I use Firefox on Windows XP. After Firefox has been updated to version 30.0, the attachments in Gmail and Yahoo mail popup are not displayed to the top. By clicking on the attach icon shows no response. Its working perfectly fine in Chrome. I removed the extensions and tried again, but the problem persists.

    It works fine now. Add-ons are enabled, but the hardware acceleration is disabled. That seems to have done the trick. Thanks for your help.

  • Want to 750-114: 10 Start button not working not properly

    When I left click on the windows icon to set up the list of programs and 10 button to bring up the apps page to start nothing happens. It started last week.

    Don2498

    Hello;

    Let me welcome you on the HP forums!

    I read your post on the button start Win10 is no longer working and I wanted to help.

    People with MS by pushing the Win10 updated weekly, it is not uncommon for a working PC suddenly that things stop working.

    Here, it's a simple solution, but as shown in this thread related, is not: bar of tasks/Start button not working not!-Windows 10 Forums

    All what I can say is that you work through this thread and hopefully, any of the fixes will work.

    Good luck

    I'm a volunteer and I do not work for, or represent, HP.
    ========================================================================
    If you feel that my suggestions helped you, please click on the thumbs-up symbol to say thank you!

    If they helped to solve your problem, please click 'Accept as Solution' to help others find similar information.

  • Security updates have blocked incoming messages in Windows Mail - security popup does not accept the password, error number: 0x800CCC92

    Original title: updates blocked mail in Windows Mail - security popup does not accept the password

    Hello - three updates installed security today (KB2691442, 2718523, 2596744).

    Now Windows mail will no longer accept mail entering into my pop3 account.  Security pop - up demand for a/c of the user and the password - I've checked tools > accounts > properties, reset the password, but it does not accept pop-up.  Here is the error message:

    .... POP3, server response: '-ERR [AUTH] username and password not accepted.', Port: 995, secure (SSL): Yes, Server error: 0x800CCC90, error number: 0x800CCC92

    Help please! John

    Hello

     
    See the steps in the links.
    Troubleshoot Windows Mail

    Windows Mail: Setting up an account of end-to-end

    Hope the information is useful.

  • How to disable the LOV Popup button in a list manager

    I would like to disable or hide the LOV of Popup button in a list manager. The small button LOV Popup that appears before the buttons Add and Remove. Our users want to paste the text into the search and box only use the Add and Remove buttons.

    I use APEX 4.0.2.00.07 and theme 10 - sand.

    Thanks in advance for any help.
    DP

    Try this one:

    
    

    Or send me the HTML source of the page to mgoricki8 (at) gmail. com

    BR,
    Marko

  • Button screen bitmap PopUp do not use opaque background

    I have a custom button png I created, it includes an opaque background. I use this button anywhere in my app and it works perfectly in the normal screens. However when I put them in the custom context menu screens, the opaque turns into a white color. I need to solve this problem. Please tell me any code you must see. Thank you!!

    I think the problem might be in the substantive Manager, it's here for a normal screen:

    this.getMainManager (.setBackground)
    BackgroundFactory.createBitmapBackground (Bitmap.getBitmapResource ("background1.png")));

    This is for a pop-up screen:

    () this.setBackground
    BackgroundFactory.createBitmapBackground (Bitmap.getBitmapResource ("backgroundProfile.png")));

    For the pop-up screen, I can't use getMainManager(), and when I try to use getManager() gives me a nullPointer exception.

    Please help, thanks

    I mentined about that I wasn't convinced thuis was your problem, the important thing that I told you about PopupScreen was how to find the NManager.

    That said, some of your code LabelField seems wrong:

    Protected Sub paint (Graphics Graphics) {}
    graph.fillRect (0, 0, getWidth(), getHeight());
    graph.setColor (Color.RED);
    Super.Paint (Graph);
    }

    You have not set a color for the first fillRect, so it will be whatever color the LabelField normally use, who is black.  So I think you're just lucky that your code works.

    In the LabelField PopupScreen you added

    graph.setBackgroundColor (Color.BLACK);

    This in fact has no effect on the fileRect, but is effective the next graph.clear (), and then it will take your Bkacground color.

    I would recommend that you change these two areas to do the following, which I think will give you black backgrounds and red text in both cases:

    LabelField t1 = new LabelField ("Example")
    {

    Protected Sub paintBackground (Graphics Graphics) {}

    try {}
    graph.setBackgroundColor (Color.BLACK);

    Graph.Clear ();

    }
    Protected Sub paint (Graphics Graphics) {}
    graph.setColor (Color.RED);
    Super.Paint (Graph);
    }
    };

    If you make this change and corrects LabelField, perhaps a similar change will fix your buttons?

    In fact, to make sure that your code has no effect in Sweden, I would like to change your code as follows:

    LabelField t1 = new LabelField ("Example")
    {

    Protected Sub paint background (Graphics Graphics) {}

    int currCol = graph.getBackgroundColor ();

    try {}
    graph.setBackgroundColor (Color.BLACK);

    Graph.Clear ();

    } {Finally

    graph.setBackgroundColor (currCol);

    }

    }
    Protected Sub paint (Graphics Graphics) {}

    int currCol = graph.getColor ();

    try {}
    graph.setColor (Color.RED);
    Super.Paint (Graph);

    } {Finally

    graph.setColor (currCol);

    }
    }
    };

  • events of button inside the popup does not close popup

    Hi all

    I have a requirement to create the popup to enter some lines. So I created integrated popup and I placed the table advanced inside the popup. Also, I placed a button (AddNewRow) with the partial action of fire in table advanced table actions. in the basic PFR page, I wrote for the event AddNewRow event action. Once I click on this button, its perfectly calling event written in base page. But the window closed. How to avoid close the pop up window because I have to do the creation of multiple line inside the popup.

    version: R12.1.3

    Please guide to achieve this.

    Thank you

    SAN

    I achieved this goal by creating a button with partialFireAction event and event action written inside the window popup controller.

  • Can not disable popups blocker, demand always if I want to enable the Popup or not?

    If I enable or disable the blocker for popups, it insists on every popup blocking.

    I consult and post on several forums and after still showing request if I want to enable or not, while in reality all that happens is that I made a post or reply to a thread, and the page is back just to include my message in the thread.

    I reinstalled my computer a couple of weeks and this has happened ever since.

    Seem, it maybe sorted, if I uncheck the box, warn if a page redirects or reload a page.

    Hmm seems a little stupid when everything that makes the page displays your post on a forum.

    Anyway thanks for your help.

  • APEX 5 LOV Popup button disappears

    Hi all

    I have a popup LOV and a display one element next to each other on my page in APEX 5.0.1.

    The popup LOV is entrable so that the user can enter the ID or choose it from the LOV.

    The only display element contains a description of the selected or entered value.

    When resizing the screen, display the field only (extended column label 0) moves the button to open the popup LOV.

    For example: this seems to happen when the page width is between 1115px and 1230px.

    When the user clicks the popup LOV point and the tabs, the button is still available.

    I tried to make the column display only start of column 9 that solves the problem in 90% of the time.

    But when there is a big gap between the popup LOV and only display item that I'd rather not have on a high resolution.

    Make a small example here https://apex.oracle.com/pls/apex/f?p=32400:6: (demo / demo)

    Advice for this problem are welcome.

    Kind regards

    Kim

    You're right, it's a problem of Popup LOV only. If possible (not too many lines in your LOV) you can adapt it to the Select list. Who t scale well on small windows:

  • Inside the af AF:commandLink: Iterator not calls actionListener method

    Hi all

    I use Oracle Jdeveloper 11.1.1.7.1.

    I have an ArrayList which I am an iteration in the jsff using af: iterator and display the value in a command link.

    Now, when I click on the order link, the action listener is not called instead the get method of the value of the iterator is called.


    Here is my code jsff:


    " < trh:tableLayout xmlns =" http://MyFaces.Apache.org/Trinidad/HTML "

    ID = 'tl1' >

    < af:iterator id = "i1" var = "var" lines = "10".

    value = "#{backingBeanScope.PortalBean.orderSearchResults}" >

    " < trh:rowLayout xmlns =" http://MyFaces.Apache.org/Trinidad/HTML "

    ID = "rl1" >

    " < trh:cellFormat xmlns =" http://MyFaces.Apache.org/Trinidad/HTML "

    ID = "cf1" >

    < af:panelGroupLayout id = "pgl14" layout = "horizontal" >

    < af:commandLink text = "#{node.orderId}" id = "cl3" "

    actionListener = "#{backingBeanScope.PortalBean.highlightNode} '"

    partialSubmit = "true" / >

    < / af:commandLink >

    < af:spacer width = "10" height = "10" id = "s2" / >

    < / af:panelGroupLayout >

    < / trh:cellFormat >

    < / trh:rowLayout >

    < / af:iterator >

    < / trh:tableLayout >

    Now, whenever I click on the order link, instead of calling the method highlightNode of the bean, it called the getOrderSearchResults() of the portal bean.

    I tried to change that to a button, but no luck, and the worst is that it does not give an error or any exception.

    Someone can suggest, what is the problem here, how can I invoke the listener in action during the click on link getOrderSearchResults() instead.

    Hi user

    y at - it no mandatory field on the page or any validation?

    m not sure, but can you try to change your view beanScope or pageFlow

    Thank you

  • ADF Popup showing not the responsibility of fragment

    Hello

    I am calling a bean method in the accessor Get of CommandLink to the load in the binder to a command link defined in the bean, so when this fragment is called from another fragment then

    in this method I m did some checking and based on a specific condition, I have popup.show but it does not show the popup code does not any exception.

    public RichCommandLink getC1() {}

    PopulateData();

    return to c1;

    }

    Now, in populatedata, I popup shown for some disorders but when fragment is called for the first time it does not show the popup, but same populatedata is called the fragment button

    so when I click the button, the popup is displayed correctly.

    So if I understand correctly the first time getC1 is returned when the fragment load, so how this popup appears in this...

    Public Sub populatedata()

    {

    If...

    {

    System.out.println ("popup display");

    RichPopup.PopupHints p2 = new RichPopup.PopupHints ();

    P1. Show (P2);

    System.out.println ("after the popup display");

    }

    }

    In the newspapers, I see the two system messages, you guys can suggest me how to get this popup appears when the fragment of loading for the first time and the get accessor for the c1 is going to get fired.

    JDeveloper version: 11.1.2.3.0

    Kind regards

    Hello

    you have debugged the method call to prove that it is called at all? Instead of a binding component as a trigger, you can try a value property, for example on a hidden output text element?

    Since you're on JDeveloper 11 g R2, the use of the events of the JSF 2 system becomes also possible. The event system would be added to a component on the fragment (for example the fragment root layout container) and then listen to the phase of rendering pre-rendered.

    See: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/108-triggerpopupinregion-1994836.pdf

    Frank

  • Custom popup button close

    Hello

    I wonder if its possible to reproduce the functionality of the default close button (the X in the right corner) with a custom button popup (like cancel).

    The problem is that I use custom buttons so my popup has a dialog box within which type is NONE. I have my close button which is a command link, but you can see the difference when you press this button and the close (X) button. the last of them is much faster to close.

    11.1.1.6

    Any suggestion?

    I suspect that you notice some delay because the listener of the action of your order link is implemented at the side managed server (for example, a bean method). If the action is a managed bean method (namely, the side Server), then the command binding enforcement generates an HTTP request to the server (in order to run the listener to action at the level of the server) and the context menu will not close until the HTTP response is received and processed by the browser. You can avoid the HTTP round trip by implementing an action listener client instead (e.g. ), where you can close the popup Javascript (using the Javascript API of the ADF). Look at the documentation of the tag in JDeveloper help for a simple example for opening a popup, you can easily modify it to close the popup instead.

    Dimitar

  • Adobe DPS - programming link to a layer and close the popup button

    Hello world

    Two quick questions and hope that you can advise

    (1) how to link a button on a layer to a contextual layer in article - IE: report on the base layer and the material to a pop-up when you click another layer to display.

    (2) exactly how should I ask a button to close a layer and return to the starting point (if it is not an object of State Multi?-say a Photo you want to see in a larger size to appreciate it...) Is it just planning to hide this layer or another way?).

    Thank you: Daz

    You must be a subject of multiple State, MSO, which contains the information of your popup. This will trigger from an action of tap from a button or a hyper link. In my MSO pop-ups, I created the first State with an empty object. The State that contains the pop-up will have a button/hyperlink using one pass to the action of the State pointed to State 1, the object is empty.

    Learn more about WHO to:

    Digital Publishing Suite help | Overview of the interactive overlays

    Digital Publishing Suite help | Best practices for creating overlays

    DPS App advice

    Google

    Google

    If you want to take the user to the page that referred to another page/article add a goto://FolioNavigation/lastview at the end of your close button action. Test this on your iPad, because it does not work in the overview of the Office of the ID.

  • ADF popup does not work on server

    I created a page popup using the ADF workflow task.
    Basically, the action of a button triggers the pop-up window.
    It works fine locally, but when I deploy to server and clicked the button, it just refreshes the page and pop-up window is not displayed.

    Thanks for your help.

    When you run the page on the server, using the right URL? If you see a "jspx" on the end of your URL, you're probably not. You must run view taskflow activity and not the page itself. Another common way to confirm if you hurt: If clicking the button works the second time, and then you do wrong :)

Maybe you are looking for

  • Portege 4000: After HARD drive replacing WinXP installation stopped

    Drive HARD original of my old laptop Portege 4000 just crashed. I went to the local computer store and bought a new Samsung 40 GB HDD (no part no MP0402H) what they recommended. First of all, I have problem to him have partitioned and formatted when

  • Impossible to get MSDN (as opposed to the ' Community') forums

    How is it when I go to the Microsoft Developer Network site at http://msdn.Microsoft.com/en-us and click on 'Forums' to take me to http://social.msdn.Microsoft.com/forums/en-us/categories EVERY TIME I get the message "Internet Explorer cannot display

  • WAG54GX2 ping timeout Server NAS Synology DS215j

    I'm trying to connect my new Synology NAS server on my home network.  The Linksys WAG54GX2 Gateway is to see him and NAS assigning IP 192.168.1.100.  However, I can't not conntect to the web page of NAS servers, configure.  A direct connection to my

  • The system does not support the mode full screen for cmd

    Respected Sir/Madam I am user of Windows vista HOme basic... .also I have Windows 7 user... I'm basicllly, a student in computer engineering... I get an error "The system does not support the mode full screen" for cmd.exe in C++ turboo or JDK.. .then

  • Query must return the values null

    Hi once again, everything The query below should return zero values for the date, but instead it brings back each transaction in the table, any ideas why? SELECT CID.transaction_id, MMT.ITEM_ORD PART_NUMBER, CID.DESCRIPTION, CID.TRANSACTION_TYPE_NAME