Popup changes position when redisplaying

Jdev 11.1.1.4
Related with
Re: popup automatically dismisses
Jdev 11.1.1.4
My jsf page has a af:commandImageLink that displays a popup:
<af:commandImageLink id="cil2"
icon="http://www.esade.edu/itemsweb/apps/img/buscapgm/copy.png"
<af:showPopupBehavior popupId="::p1"
align="afterEnd" alignId="cil2"/>
</af:commandImageLink>
The popup is:
<af:popup binding="#{backingBeanScope.PrincipalBB.p1}" id="p1"
autoCancel="disabled">
<af:panelWindow binding="#{backingBeanScope.PrincipalBB.pw1}"
id="pw1" modal="true">
This popup has a button (cb1). After clicking on the button some additional fields have to be displayed in the popup.
The problem is that after clicking on this button, the popup redisplays in a different position of the window and doesn't respect the initial alignId="cil2".
Any idea ?
Thank you.

Hi,
Try as partialSubmit="true" for button (cb1)

Similar Messages

  • Why the hyperlink's text change position when the website is online?

    Why the hyperlink's text change position when the website is online?

    Are these hyperlinks in the navigation menu or the text of the site?
    Are you using a web safe font?
    http://www.iwebformusicians.com/iWeb/Fonts-Colors.html
    Can you publish the URL to a page of the site?

  • Objects in different layers changed position when i opened the project file, why? Can i fix this in a non painful and quick way?

    Im making a frame-by-frame animation and today when i opened my project som objects had changed position while others didn't. This countinues throughout the whole timeline and sometimes they change position.
    Here is before:
    Here is after:
    I think it has something to do with me changing the documents size. But it didnt happen yesterday when i did the change, only today when i opened the file again, and i cant change it back and make things right again.
    If someone knows what happened and if i can fix this it would mean A LOT to me.

    There is really no way around backing up your files regularly.
    Flash is sadly not the most stable program.
    Make it a habit to save a new version every half an hour or so, that will diminish your losses.
    Consider it a "warning shot" and consider yourself lucky that you didn`t get the infamous "flash couldn`t open file" message ;-)

  • Help,Layers changing position when grouped.

    I imported a layered JPEG image from Photoshop into Motion 3 (each layer together made up a single image)
    When trying to group some of the layers in motion, the grouped layers alter their position (i.e appear dislodged from the single image.)
    Is there a way i can group layers together without changing their position?
    I've tried holding the Cmd key when grouping (as suggested in the release notes) but that did not work.

    Hi Andy
    Sorry for the late reply.
    What I’m trying to do is to import an image that I cut up into layers Photoshop (like a jigsaw puzzle) and then import that layered Photoshop file into motion.
    The goal is to hopefully create a smashed pane of glass effect, with the image. (you know.. “smash” the image into the created pieces (layers) and have them fly towards the viewer, then reverse animated media so that it forms one image again)
    I got as far as importing the picture as a whole into motion with all the layers creating what looks like a single image. But as soon as I group a number of the layers that form the image together, those grouped layers become dislodged from the whole picture.
    I’m going to try playing with the anchor points as you suggested, and hopeful it may fix it.

  • After Effects, Layers change position when converting project from CC to CC 2014

    When we convert some projects from CC to CC 2014 some of the layers are shifting position (both x & y).
    Anyone else seeing this kind of problems?

    Photoshop changed how layer bounds are calculated in some cases, which causes the Photoshop library that we include with After Effects to also have this change. We are currently working to determine how to fix this for the next update. It's tricky, because the new way that Photoshop is doing things is more correct... but it also means that projects created in previous versions look different when opened in the new version. We'll probably end up with a "legacy" option that will prevent this conversion from happening when opening old projects.

  • Has anyone ever noticed that pictures of self change position (when taken with someone else)?

    When you take a picture of yourself (and someone else) - their positions change. I would be on the right of them. When reviewing the picture, their position changes and now I'm on the left...

    It's when you turn the camera onto yourself (and when you're taking a picture of yourself and someone else)

  • Why do masks change position when I move them to other layers?

    I created both a simple shape mask and also a complex bezier shape mask. When I move these masks to other layers they change their position. Is there a way to change this behavior?

    They are positioned in relation to the original object, and the Group that object is in.  Copying them to another object may sometimes require you reposition them.

  • My hard drive desktop suddenly will no longer hold or maintain the icons in place when I shut down and restart.  The icons all change positions, alphabetically.  Just started happening.  Any thoughts?

    My hard drive desktop suddenly will no longer hold or maintain the icons in place when I shut down and restart.  The icons all change positions, alphabetically.  Just started happening.  I prefer the icons to a list format.  Concerned this might be a symptom of a larger problem.  Any thoughts?
    revmandan

    It's normal for the icons at the top level of the startup disk to revert to the same arrangement every time the Finder is relaunched. If it's important to you to arrange those icons in a persistent way, proceed as follows.
    Back up all data.
    Open the Info window on the startup disk (labeled "Macintosh HD" unless you gave it another name.) Click the lock icon in the lower right corner of the dialog and authenticate.
    In the Sharing & Permissions section, click the plus-sign button to add an entry to the access list. Give yourself "Read and Write" access. This will be a temporary change. Leave the dialog open.
    Open the Finder window and arrange the icons as you wish, then close the window.
    In the Info dialog, use the minus-sign button to delete the entry you just added to the access list. Don't change anything else. When you're done, it should be the same as when you started. Close the Info dialog.

  • Keep layout position when using Find/Change?

    When using Find/Change in InDesign CS4, each occurrence of the "Found" material is centered in the window, so the page moves around with each find. Is there a way to keep the page in a fixed position when searching through a document?

    Actually, I can think of a shortcut for the hard part: The user uses the
    regular find/change UI to make all their settings. Then, they run the
    script, which will simply use the settings in the UI. Nice, huh! So you
    could get a listBox of all the finds -- select the entry and you get
    taken to the desired location. Click the "change" button and the change
    is made. Here's a proof of concept:
    #targetengine engine20
    var myFinds = app.findText();
    var w = new Window("palette");
    var myList = w.add("listbox", undefined, myFinds);
    var changeButton = w.add("button", undefined, "Change");
    myList.onChange = gotoFound;
    changeButton.onClick = makeTheChange;
    w.show();
    function gotoFound(){
    app.select(myFinds[myList.selection.index].parentTextFrames[0].parent.parent);
         app.select(myFinds[myList.selection.index]);
    function makeTheChange(){
         myFinds[myList.selection.index].changeText();
    Obviously very rudimentary: but this does work in CS4. If the list is
    too long, though, the change button will disappear off the bottom of the
    screen. Also, really once the change is made, the item should be removed
    from the list, but there's a bug in CS4 that makes it impossible to do
    that simply, if I recall correctly (or was that only a tree list?)
    Also, I have found that the only sure way of getting the entire spread
    to show is as I've done it above (and it would need much more error
    checking than this -- for instance, overset text).
    Ariel

  • Im using phone 3GS 32GB, my signal was very poor but whenever i insert my sim to other phone, there's no signal problem.. When i change position, the signal suddenly dropped. my software version now is 4.3.5.

    im using phone 3GS 32GB, my signal was very poor but whenever i insert my sim to other phone, there's no signal problem.. When i change position, the signal suddenly dropped. my software version now is 4.3.5.

    GoodReaderUSB originally worked by transferring files to a special location on a user’s iPhone, which iPhone’s GoodReader app was able to access. However, accessing this location was a violation of Apple’s iPhone SDK Agreement, because the app had to access files outside its own private storage space, which is forbidden by Apple.
    Because of this, your only choice to fix this. at this point, may be to restore your phone as a "new" device in itunes and NOT from backup. Follow this by syncing your content back to your phone. Unfortunately, ALL saved data on your phone will be lost.

  • Although all photos in my libraries are rotated to the correct orientation, random pictures still show up in the wrong position when viewed on Apple TV. Any suggestions?

    Although all photos in my libraries are rotated to the correct orientation, random pictures still show up in the wrong position when viewed on Apple TV.
    Any suggestions?

    silvergc
    Thanks for your comments
    Several of our iPhone users in the UK reported the problem this morning, and as the Apple fan in the office I've got the job of resolving the issue
    The original Excel was an old .xls file, but I have saved it as a .xlsx and the problem still appears
    I haven't spoken with our developer yet, but I assume he has created the Excel file using some programming tools rather that directly using Excel
    In the meantime I have created a simply spreadsheet with 8 cells contain values
    In the first 4 cells, I have formatted them using Currency, and have used the currencies USD, DEM, GBP and CHF
    In the remaining cells I have formatted them using the Accounting option, using the same currencies
    When I review the spreadsheet on the iPhone (or iPad), the first 4 remain the same yet the last four all show the £ symbol
    I have now changed the Region Format of the iPhone to United States, and when viewing on the iPhone the bottom 4 values are now all showing the $ sign!
    If I had created the spreadsheet I would have put the Currency code in a seperate cell and purely used a numeric format for the number, and there would be no issue.  That might be the only solution
    Yes, the Director has the full MS Excel app on his Windows 8 device, but I can't expect all of our clients to go and do the same, in business many of them will have the iPhone
    We may have to change the way we produce the report because of Apple's failings here, and it's not the first time that we have had to change something because Apple devices can't display them properly
    In business, submitting a potential job contract only for the recipient to get the wrong idea of the costs is a major concern

  • Images change position and dimension after client edits on admin console!

    Hi, 
    1. After my client uploaded his images onto the site using the admin console they changed position slightly and did not fit exactually into the image frames i had set when i first made the site.
    2. When i opened the site on muse and merged changes the images positions and dimensions changed even more than what was being diplayed on the live site? (E.g I originally had two columns of square thumbnails for some slideshows and now i have a single column of rectangle images)
    3. I republished to see what would happen it now displays the way it was diplaying in Muse. The site is: www.jacobbuckland.co.uk
    My understanding was that when i create an image frame or gallery in muse that any image uploaded via the admin console should fill that frame no matter what the size or dimensions of that image?
    Any help gratfully received. Thanks

    Our technical team managed to find the immediate cause for the problem, and a solution.
    According to them there was a corruption on a speciffic OLAP file. By deleting it, they allowed it to be recreated on the next application processing. The file in question was found in \Microsoft SQL Server\MSSQL.2\OLAP\Data\UGF.0.db\<APPLICATION>.38.cub.xml
    Where <APPLICATION> is the name of the problematic cube.
    After that everything is working.

  • Popup for credentials when connecting to OWA/ECP when using HLB DNS name

    Hi,
    We're experiencing a strange problem when connecting to OWA/ECP.
    Since a week or two, we get a popup for credentials when logging onto
    https://mail.customer.com/owa.
    When the credentials are filled in the first time, we keep receiving the popup, and can't get through.
    We're using integrated authentication internally.
    When connecting externally, we get a popup from a non domain-joined pc,  but get passed correctly to owa and ECP.
    We're using a load balancer that uses mail.customer.com, and distributes it over the 3 exchange servers.
    When connecting directly to each exchange server, we get a certificate warning (which is logic), but after confirming we get passed to ecp or owa correctly.
    Works :
    https://exchangeserver1.customer.com/owa (after receiving certificate warning)
    https://exchangeserver2.customer.com/owa (after receiving certificate warning)
    https://exchangeserver3.customer.com/owa (after receiving certificate warning)
    https://10.10.10.30/owa (after receiving certificate warning) > 10.10.10.30 is the VIP ip address used for loadbalancing
    Doesn't work :
    https://mail.customer.com/owa
    When changing the hosts file, and set mail.customer.com to point directly to one of the exchange servers, it doesn't work either.
    PS :
    So mail.customer.com gets forwarded to the VIP ip address.
    We don't experience any problems with outlook.

    Hi
    Chek if VIP FQDN is added to DNS
    Check if RpcClientAccessServer parameter using Set-MailboxDatabase for each mailbox database in the appropriate site
    Set-MailboxDatabase -RPCClientAccessServer "CASArrayFQDN"
    Change AutoDiscoverServiceInternalUrl on each CAS using Set-ClientAccessServer
    Change InternalUrl parameter on each CAS using Set-WebServicesVirtualDirectory Identity EWS*in the appropriate site
    Change the InternalURI in the Exchange Control Panel, offline address book, and Microsoft Exchange ActiveSync (through management console under server management for each appropriate CAS)
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you.
    Regards,
    Sathish

  • Why does the elements 13 change resolution when going into the editor -- it is huge and unusable

    why does the elements 13 change resolution when going into the editor? -- it is huge and unusable

    Many mysteries...
    Which is your OS version ?
    Your screen is 1920 by 1080 pixels.
    The problem appeared after having worked normally.
    When we select a picture from the organizer (album) and click on the edit button.  The editor software changes the entire computer resolution from 1920 x 1080 to   640 x 480 (very unusable).
    That's not clear for me: did you click on the 'Edit' button on the bottom right part of the organizer, or did you use the menu or the right click popup menu to open the editor? In the second case, you are in the editor workspace.
    We tried right clicking on the Elements 13 icon, select properties and under compatibility we made sure that "run in 640 x 480 screen resolution" was de-selected, and it was.    Cannot find any properties window for the editor?  
    The editor has its properties in the 'Edit/preferences' menu, but there is nothing about resolution there.
    Just to be sure : when you are in the organizer with the left 'Folders' panel shown, you highlight one of those pictures to edit. Then you right click and choose to "go to folder". Do the images are shown as 'offline' ? If that is the case, the original are on an external drive which is not connected, and what you are seeing is a 'preview' copy on your computer with 640 x 480 resolution.

  • ARD 3 not prompting user to save changes even when told to

    Hello! I have ARD 3 and when I send out a restart command and select the radio option "Users can save changes or cancel restart" it acts as if I didn't select this, and instead selected "Users lose unsaved changes".
    This has never worked for me. If working properly, it SHOULD actually show up on the affected computer a dialog popup of some sort providing the user just those option: to save changes or cancel restart.
    What is wrong/going on, and how do I fix it?
    Thanks ahead of time,
    Sam Marcus

    Slava Natapov wrote:
    Samita wrote:
    Whenever a user changes some items in Block_1 and presses save button, the values from non_db items get copied to the db_items (based on view) and commit_form is called. Try to copy values to the db_items not in save button, but in WHEN-VALIDATE_ITEM of non_db items.- I created the non-db items becoz, it was asking me 'Do you want to save changes', even when I only queried data from the view (becoz i was doing some computations while displaying the items. and the form assumed that the DB items were begin changed ). Inorder to get rid of that problem, i used mirror_items (non-db) for all the db items.
    So under this scenario, when i copy values to the db_items in WHEN-VALIDATE_ITEM trigger of non_db items, the form considers the db_items are changed and asks 'Do you want to save changes' even when the user has not made any changes and only queried data.
    Edited by: Samita on Dec 9, 2009 10:12 AM

Maybe you are looking for

  • On a Mac, how do I setup Firefox to use Command+Enter to open a new tab from the address bar?

    I tried this extension (https://addons.mozilla.org/en-US/firefox/addon/customizable-shortcuts/) , but it doesn't appear to support editing the current "Alt+Enter" to change to "Command+Enter". I have a decade plus of muscle memory using the key next

  • Problems with basic spatial query

    I'm trying to learn Oracle Spatial working with 11g R2 and with 3D georeferenced data (specifically data describing buildings in a city). But I'm having trouble getting a basic query to work on my dataset (it works for the book example), and I'm tryi

  • Proto html preview error in creative cloud

    The HTML preview in Creative Cloud doesn't work properly. :-( I can only see my prototypes in the proto app. When I'd like to see them in Creative Cloud in a browser, clicking the magnifier icon below the preview image, I can see only plain text with

  • Some buttons on SRM Web screen not enabled

    Hi, When a user logs in SRM Web as an approver,the buttons for Approve,Reject are in Grey mode.However the same looks fine i.e. anabled in other system.What is the factor which controls this functionality? We want to make these buttons seen as enable

  • Comb Fields - with specific type of comb field look

    I am attempting to make the comb fields as shown in the attached screen capture.  Any thoughts or ideas would be welcome.