Don't change not shown after you save the changes

Hello

1 has created the View object (VO1) involving employee of paintings for example, Department,.

2 created another view (VO2) created a link with emp_id with VO1, now VO2 depends on VO1

3 created another view (VO3) with single employee table and link created with VO2. I want to update the name of the employee.

Created page jsf and drop VO1 as list of navigation (Select Department) and in detail droped VO2 that displays department_name, name of the employee, and for the update employee name droped VO3, based on VO2.

It's working well.

Problem: When I change the name of the employee VO3 and press the button Save, it works very well, but does'nt update the name of the employee in VO2, that I must change the record of the navigation list, and then select the same folder to see the changes.

I also want to show the update button on VO2.

Thank you

Well, go to the pageDef and insert action link. In the dialog box that appears, select appropriate iterator and then operation or Execute. After that, you can use the OperationBinding I order to perform this action.

Take a look at:

Oracle ADF quick how-to: Calling ADF Action binding programmatically

As another option, oyu can refresh only VO 2 of current line:

Andrejus Baranovskis Blog: Full simple refresh row without restoration

search for:

"Row refresh is implemented as a custom method inside the View object implementation class."

JohnMackanzi wrote:

How executeQuery for VO2 Pro grammatically? Please explain

Tags: Java

Similar Questions

  • Why the highlighting of text in a PDF document does not work after you save the file

    Why the highlighting of text in a PDF document does not work after you save the file

    What application you use to highlight?

  • Why my virus program esetnod 32 guard tell me that my system is not updated after you install the update of all the nessary?

    Why my virus program esetnod 32 guard tell me that my system is not updated after you install the update of all the nessary?

    I have download all necessary Windows 7 updates, but they are not installed. Can anyone help?

    Kind regards

    Mitch

    Hi Mitchell,

    Please uninstall and reinstall the ESET program and check if it solves the problem:

    Uninstall or change a program

    http://Windows.Microsoft.com/en-us/Windows7/uninstall-or-change-a-program

    For further assistance:

    ESET knowledge base

    http://KB.eset.com/esetkb/index?page=home&locale=en_US&option=None

    Please post us with the result.

  • print DigitalPersona finger scanning does not work after you install the recommended updates

    My impression of digitalpersona finger scanning does not work after you install the updates recommended on my dell Vista

    Hello

    1. do you have an error message?
    2. are you referring to the print scan hardware or software scan print that was supplied with the device?

    Method 1:
    I suggest you to update the software DigitalPersona from the link below https://www.digitalpersona.com/support/downloads/

  • The Windows Installer appears when not claimed after you install the new printer.

    I installed a Canon S400 printer and now when I open a folder, file or no matter what shortcut (either by double clicking or right click Open) MSI is trying to install one of the two applications PDF I had already installed. After canceling the installation program, the file opens. How can I fix? I am running Windows XP SP2. Please do not say reinstall applications, I have uninstalled them because they proved to be useless junk.

    If you don't want to reinstall applications, then use the Windows Installer Cleanup utility to remove these entries.

    Clean Up MSI (Windows Installer) - http://support.microsoft.com/default.aspx?scid=kb;en-us;290301

    MS - MVP - Elephant Boy computers - don't panic!

  • Impossible to listen to the Radio on the Internet after you save the playStation.wax file

    Original title: webradio - click look and pop-up screen appears

    In Window Media Player - media - Internet Radio Guide - click on listen and pop-up screen appears, asking to save the file - playStation.wax? When I cancel or save - no radio?

    This happens with all radio stations, or just one?

    The dialog box that opens also isn't an Open button and a checkbox called always ask before opening this type of file ? If so, you can clear the check box and click Open , and the dialog box should not appear more after that.

    If this does not help, try to clear the temporary Internet files and the Internet Explorer Cookies.

    Tim Baets
    http://www.BM-productions.TK

  • Camera does not work after you reduce the screen brightness

    Hello

    I have an application that uses the camera in QML. It works fine, but if the screen fades while my application is open the camera no longer until I restart the application.

    Here is the page of qml any camera:

    import bb.cascades 1.0
    import bb.cascades.multimedia 1.0
    
    /**
     * Most of this code was copied from:
     * https://developer.blackberry.com/cascades/documentation/design/camera/taking_a_photo_with_the_front_...
     */
    
    Page {
        property string pictureLocation: ""
        function closeCamera() {
            createReportNavigationPane.cameraClosed(pictureLocation)
            pictureLocation = "";
            saveID.enabled = false;
            sheetCamera.close();
        }
        titleBar: TitleBar {
            acceptAction: ActionItem {
                title: qsTr("Save")
                id: saveID
                enabled: false
                //title: "Save"
                onTriggered: {
                    closeCamera();
                }
            }
    
            // The 'Cancel' action
            dismissAction: ActionItem {
                title: "Cancel"
                onTriggered: {
                    pictureLocation = "";
                    closeCamera();
                }
            }
        }
        onCreationCompleted: {
            // Check to see if any cameras are currently accessible.
            if (camera.allCamerasAccessible) {
                // Open the rear camera.
                camera.open(CameraUnit.Rear);
                camera.isOpen = true
            }
        }
        Container {
            layout: DockLayout {
            }
    
            // The Camera object.
            Camera {
                id: camera
                preferredWidth: 768
                preferredHeight: 1280
                objectName: "camera"
                property bool photoBeingTaken
                property bool isOpen: false
                onTouch: {
                    if (event.isDown()) {
                        if (photoBeingTaken == false) {
    
                            // Take a photo, and automatically
                            // save it to the file system.
                            camera.capturePhoto();
                        }
                    }
                }
    
                // The following are examples of slots that can
                // be used with the Camera object to handle
                // the various signals that are emitted.
                onCameraOpened: {
                    // Once the camera is open, start the viewfinder.
                    camera.startViewfinder();
                }
                onCameraOpenFailed: {
                    console.debug("Camera cannot open");
                }
                onViewfinderStarted: {
                    console.debug("Viewfinder has been started");
                    photoBeingTaken = false;
                }
                onViewfinderStartFailed: {
                    console.debug("Viewfinder could not be started");
                }
                onPhotoCaptureFailed: {
                    console.debug("Photo could not be taken");
                    photoBeingTaken = false;
                }
                onPhotoSaveFailed: {
                    console.debug("Photo could not be saved");
                    photoBeingTaken = false;
                }
                onPhotoSaved: {
                    saveID.enabled = true;
                    photoBeingTaken = true;
                    console.debug("Photo has been successfully saved");
                    photoBeingTaken = false;
                    console.log(fileName);
                    pictureLocation = fileName;
                    var imageName = pictureLocation.substring(pictureLocation.lastIndexOf("/") + 1);
                    var imagePath = "/accounts/1000/shared/camera/" + imageName;
                    cameraPreview.imageSource = app.getCameraPreview(imageName, imagePath);
                }
            }
            Container {
                layout: StackLayout {
                }
                leftPadding: 10.0
                topPadding: 10.0
                Container {
                    preferredHeight: 200
                    preferredWidth: 200
                    horizontalAlignment: HorizontalAlignment.Left
                    Container {
                        verticalAlignment: VerticalAlignment.Center
                        ImageView {
                            id: cameraPreview
                            verticalAlignment: VerticalAlignment.Fill
                            horizontalAlignment: HorizontalAlignment.Fill
                            scalingMethod: ScalingMethod.Fill
                        }
                    }
                }
            }
        }
    }
    

    Thank you

    Gerry

    so, there is a signal of cameraResourceReleased which you can listen to that will tell you that the camera has been arrested.

    After that, you can restart the viewfinder after your application is in the foreground.

    We have a corner case that we are still working on what centers around the case when the screen starts to close (causing the camera to stop), but the user he wakes up before the browser tells your application in the background.  In this case, you may not receive a leading event.  You can probably work around this case by launching a timer and check, after a second or two, if the application has been deleted original or not... If it is still in the foreground, then you could try restart the viewfinder

    See you soon,.

    Sean

  • Illustrator CS6 mode does not respond when you save the file

    Hello

    For the past two weeks Illustrator switch mode not responding whenever I want to save a file. He stays like that for all 30secs and then he finally saves the file / changes / updates.

    I use Adobe CS6 Design & Web Premium edition for Windows.

    I have uninstall and install the software several times but nothing seems to work.

    Any help will be appreciated.

    Manual,

    Just to be sure: is there a printer correctly installed, connected and turned on if it's a physical printer (you can use Adobe PDF/Acrobat Distiller as a printer by default without the need to have a printer on, of course you will need to specify when you really need print on paper)?

  • Qosmio G50 - 12 q - Vista does not load after you connect the external USB keyboard

    I could acquire an enermax acrilux usb keyboard and have connected the keyboard taken 12 q at the same level where another keyboard was attacked the qosmio g50 usb and it worked without problem.

    After to start the PC with keyboard eneramx connected the qosmio has not loaded windows vista Ultimate edition and the inside wheels have been activated.
    Never happened before. I doubted the enermax

    Reconnected to the position of the qosmio USB, there on the back not granted to start-up of turbines problems
    As the enermax, that he has never blocked the startup of the operating system and to activate turbines also have plugged into the same USB port to which priority was connected a keyboard?

    Tank you

    Hi mate

    Sorry, but you message I am really hard to understand
    What I understand is that you connected an external keyboard on the Qosmio and now the laptop will not boot properly. Is this good?

    What to say; Maybe you disable USB legacy mode in the BIOS.
    Please check this!
    To enter the BIOS press F2 and everything by turning on the laptop.

  • Re: Portege R500: controller button does not work after you install the update

    After you have installed the latest version of Toshiba Value added Package, the two buttons (toshiba assist, and backlight power) do not work properly: they open instead a window of Firefox.

    I guess there is something to configure in the section "Optimizing" Toshiba Assist.
    When I open the program "Toshiba buttons functions" (sorry for the puny, Spanish translation, it is called: "functions of Toshiba botones") all entries are empty and I have to enter the Url of the program supposed to turn off the backlight of the screen of my LCD...
    I have no idea where to find this executable.

    Can someone help me?

    Why you n t use the OS restore option?
    The operating system supports the option of system restore and this helps to put the system in the previous point.

    Check, maybe it helps to get the old version of the Toshiba Package Value added.

  • Xperia Z5: How to return to the original photo after you save the cropped photo?

    Hi, I wonder how I can return to the original photo after saving a photo cropped on my Xperia Z5. The cropped photo doesn't have a sufficient resolution so he could be put on a canvas, I want to return to the original photo before cropping. Thank you :-)

    Hello, troy_t!

    If you crop the photo, the original photo will always be there. You can crop photos on the Album and then use Photo Editor. It is a standard editing program that is provided with your Sony Xperia Z5. If you crop a photo and then save the cropped photo, the original photo will always be there. I can assure you that if you use the standard Photo editing program to crop a photo, the original photo will always be there, even if it was cropped. You can make as many photos cropped the image you want to crop as you want, because the original photo will always be there, even if you may have saved a version cropped the image you wanted at the origin of the crops.

  • Windows Vista does not start after you use the Hp Recovery Manager. What should I do?

    I used Recovery Manager to reinstall Windows Vista Basic 32-bit. During installation, it shows 0% completion although at the end it says everything is ok. After clicking on the button finish, he starts up the Recovery Manager again asking if I want to recover Windows. If I choose the Cancel button it restarts with the same Recovery Manager screen. What can I do?

    You can call HP technical support at 1-800-474-6836. Or you can give your product number, not the serial number, and I'll try to send you the link to order yourself.

  • Internet Explorer does not work after you install the kb2761451 update

    Original title: I downloaded the update and now Internet security security update kb2761451 explore does not open.  So I deleted it and Explorer opens.  This update is listed as important.  What should I do?

    The Explorer is 9.

    Hello

    Thanks for posting the question in the Microsoft Community!

    Internet Explorer stops working after the update kb2761451 is installed.

    The problem may occur if the updated components are corrupted.

    I suggest you follow the steps mentioned below:

    Method 1: Of reset Windows Update components

     

    See the site:

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058

    Warning: this section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    http://Windows.Microsoft.com/en-us/Windows-Vista/back-up-the-registry

    Method 2: run the Update of the system analysis tool

    See the site:

    System update scan tool corrects errors of Windows Update in Windows 8, Windows 7, Windows Vista, Windows Server 2008 R2 and Windows Server 2008

    http://support.Microsoft.com/kb/947821

    I hope this helps. If the problem persists, let know us and we would be happy to help you.

  • Start page does not update after you run the update

    Run the update, on shows 9.0.1 and up-to-date... but everytime I open the browser, it shows that I'm behind and that you need to update? I refreshed, etc... always won ' accepts that I'm updating

    If you use the www.google.com/firefox as homepage site that previous versions of Firefox 3 use as homepage you can ignore the message about not using the latest version of Firefox on this page.

    Google seems to keep this page.

    Google assumes that you are using an older version of Firefox if you still visit this site, and warns you that you are using an older version of Firefox and invites you to update.

    You can use a different page than the homepage as subject: House or www.google.com or www.google.com/ig (iGoogle).

  • ASM does not start after you restart the system.

    OS = Linux 5
    Grid = 11 GR 2

    I've successfully installed grid for a stand-alone server. However, after I restarted the server and commissioning upward the clusterware (crsctl start has), I got the following error message when you try to start ASM

    sqlplus / as sysasm
    SQL > startup
    ORA-27154: post/wait create failed
    ORA-27300: OS dependent operating system: semget failed with status: 28
    ORA-27301: OS error: no space is available on the device
    ORA-27302: an error occurred at: sskgpsemsper

    kernel semaphore seems insufficient, increase last kernel.sem value in /etc/sysctl.conf and try to run to the top of the DSO.

    REF the link to follow the steps below:

    http://blog.ronnyegner-consulting.de/2011/04/11/ora-27154-postwait-create-failed-ora-27301-OS-failure-message-no-space-left-on-device-when-starting-ASM-or-database-instance/

Maybe you are looking for