RH8 issue with popups

Hi there,
I am using RH8 on Windows XP. I am working on a very large, legacy project that has been around for ages.
In many, many topics there are popups which take you to a secondary topic for syntax information. Each subheading in the secondary topic has a bookmark and these popups throughout the help link back to the relevant section of this secondary topic.
However, since RH8 (I upgraded from RH5) when I click on the popup link in the webhelp output, it very often does not take me to the correct location of the bookmark referenced. It pops up several lines below that bookmark, so that the wrong heading is shown.
It seems to work ok in IE, but not in Firefox, Safari and Google Chrome (I know it's not supported, but my boss uses it!).
As our users use either Linux or UNIX, they don't use IE, so I need it to work in the other browsers. It definitely used to work correctly, as I've tested older RH5 output in all of the aforementioned browsers.
It doesn't seem to matter if you use auto-sizing popups or custom-sized popups, the same thing happens.
Anyone have any idea why this might be happening? It's very frustrating! 
Thanks in advance,
Feebeegeebee.

Hi,
I didn't get a single response to my appeal, so either no one else has seen this or it wasn't clear what is happening.
So, here are a couple of screenshots which may help.
The links used to poup in the correct place in the sub-topic (as shown below).
Now, in RH8 they pop-up in the wrong place in the sub-topic, despite the fact that nothing has changed (see below).
The same link as above does the following in Firefox, Safari and Google Chrome, i.e. it launches the popup in the wrong place.
Any ideas?
It works fine in IE, but none of our users use Windows, so that's of no use!
Thanks for any suggestions.
Regards,
Feebeegeebee.

Similar Messages

  • LSMW issue with Popups

    Hello,
    can me help anyone. I've an LSMW with an recorded transaction. I generate a BDC-map. Sometimes the transaction gives me a popup sometimes not. the popup show me only an information. It is possible to check when the popups comes up and quit it. Otherwise I got an error. And I've no chance to split the data in this with popup information and woth no popup information.
    Any ideas?
    Thank you!
    Best regards
    MartinS

    Is this a parameter? Where can I find this? Or did you mean the Batch-Input option in the Gui-Settings:
    - Click on the GUI settings button.
    - Click on the 'options'.
    - Goto the 'Expert' Tab.
    - Switch off the 'Dialog Box for OK-Code' Check box in the 'Batch Input' section.
    - Save the settings by clicking 'Apply' and 'OK'.
    Thank's for help!

  • Issue with Popup Warning in SaveAndClose Panel

    hi,
    I have a requirement to show a warning message based on Validation of some fields to get user input . Then I try to Commit or not Commit the data.
    But the popup is not getting launched before completing the method.
    When I run Click on Save or SaveandClose button , if Validation method below returns false, popup wont be launched immediately, until it reaches end of Save/SaveCllose Action methods.
    Because of this I am not able to capture the user response and proceed accordingly.
    Here is the example code:
    I have Page: Entry.jsff
    It has Save and SaveAndClose Rendered and is based on Application Panel (I can have toolbar buttons also )
    In Save and SaveClose Action methods I am calling validation method which in turn throws a Warning popup. like below.
    public String handleSaveAndClose() {       
    if(handleValidations()){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("saveandclose");
    }else{
    Map pageFlowScope =
    AdfFacesContext.getCurrentInstance().getPageFlowScope();
    String wrng = (String)pageFlowScope.get("pSubmitFlag");
    if(wrng!=null && wrng.equals("Y")){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("saveandclose");
    return null;
    The Save Action Method:
    public String handleSave() {       
    if(handleValidations()){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("save");
    }else{
    Map pageFlowScope =
    AdfFacesContext.getCurrentInstance().getPageFlowScope();
    String wrng = (String)pageFlowScope.get("pSubmitFlag");
    if(wrng!=null && wrng.equals("Y")){
    RecordingUiUtil.invokeEL("#{bindings.Commit.execute}");
    return ("save");
    return null;
    public boolean handleValidations(){
    /*....Lets say I have some validation code*/
    if(validation success){
    return true;
    }else{
    PatternsPublicUtil.invokePopup(this.getSubmitWrngPopup(),null);
    return false;
    Return Value for "saveandclose" has taskflow Return to parent page.
    It works fine when validation method returns true. No issue as there is no need for Warning.
    When validation fails I cant proceed with user response before completing action methods.
    Can u pl. help any poissible solution for this??
    thx
    --nagamani                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    you cannot interrupt processing of a managed bean method. You need to break up the methods in a part that runs for evaluating the success of validation- If validation fails you open a popup with a dialog. You then listen for the dialog OK or Cancel button being oressed and proceed accordingly. If you need to transfer context information between the two actions, use memory scope attributes
    See http://www.oracle.com/technetwork/developer-tools/adf/learnmore/77-ok-cancel-support-in-dialog-351871.pdf
    for how to handle the OK and Cancel button in a dialog
    Frank

  • Issue with popup

    Hi
    I'm kind of new to Java put hopeful I can project my problem enough for someone to help me on the nature of my problem. My problem is i have created two class Wellcome class and MainApp Class. What i want to do is when a user clicks on a button from the Wellcome class it take them straight to the MainApp Class. I've been looking everywhere and havent found anything apart from popup dialogs which is not what i want.
    This is my button at the current state
              final JButton openNxtTrackButton = new JButton();
              openNxtTrackButton.addActionListener(new ActionListener() {
                   public void actionPerformed(final ActionEvent arg0) {
              });If anyone can help me that would be great thanks
    Edited by: limpep on Mar 11, 2008 5:59 PM

    limpep wrote:
    Okey basically i have two different fames one is called Welcome and the other one is called MainApp. All i want to do is when a user clicks on a button on the Welcom frame(window) it take the user to the Mainapp frame(window).I politely disagrees with this:
    new MainApp().setVisible (true);Perhaps better would be to make the Welcome window a modal JDialog that is shown by an invisible JFrame -- your MainApp. Then when the JDialog -- or perhaps easier, the JOptionPane returns, the MainApp is made visible.
    For example:
        public MainApp() // main app constructor
            JLabel label = new JLabel("Main App");
            label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
            mainPanel.setPreferredSize(new Dimension(300, 200));
            mainPanel.add(label);
            JOptionPane.showMessageDialog(null, createOptionPanel(), "Option Panel", JOptionPane.PLAIN_MESSAGE);
        private JPanel createOptionPanel()
            JPanel optionPanel = new JPanel();
            JLabel label = new JLabel("Option Panel");
            label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
            optionPanel.setPreferredSize(new Dimension(350, 100));
            optionPanel.add(label);
            return optionPanel;
        }

  • Issue with popup region in oaf

    Hi ALL,
    I have a issue in poup region as below.
    I have a popup region that i am invoking from a base page on clicking of a button, in the popup region i have search functionalty , so i am giving some search criteria and clicking find button and able to get the data,
    but the issue is when i am clicking the find button the popup getting closed, i need the popup should display teh search data and after that i have some other functionality to select some rows from the data and need to click one mote button to reflect the data in base page, so how i can retain the poup on click of first button, please help me out

    Raghava,
    Check the vo attribute attached to the Date Field, it should be of Date type at both the level..VO Level as well as Database level.
    Regards,
    Gyan

  • Issue with Popup LOV field not clearing out "default" value

    I am using APEX 4.0 & Oracle 10g
    I have a form that displays a default value on a "Popup LOV" field (say P1_POPUP) when the Form is initially displayed to the user. The default value is part of the Popup LOV list of values. If the field is "manually cleared" *i.e. I clear the default value by backspacing and don't touch the LOV) and I Refresh (submit) the form (REFRESH button to display the same Form again), the default value is still displayed.  
    In Post Processing, I debugged the value of P1_POPUP to see if holds the default value and yes it does. I was expecting no value in P1_POPUP.
    Is this an APEX standard behavior?
    Any way how I can get rid of this value on an manually clearing action of this Pop Up field?
    Looking forward for your response.
    Thank very much in advance.
    Ed.

    I apologize, the default value was NULL indeed. However, it seems like I may need to manually clear this value so that it will not be displayed.

  • Issue with popup menubutton

    i am using a popup menu button in my application. the menu is big such
    that i am unable to scroll and cant see the remaining items in the
    dropdown.  please find following image
    is there any way to get the scroll enabled for this? thanks in
    advance.
    gautam

    Here is a possible solution:
    http://dougmccune.com/blog/2007/01/26/even-better-scrollable-menus-for-flex/
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.chikaradev.com
    Adobe Flex Development and Support Services

  • Issues with ApexLib after upgrading to Apex4

    After upgrading our application to Apex 4 we have run into some issues that look to be related to ApexLib. We had issues with popup LOV’s and some tabular forms, after upgrading to ApexLib 2.1.2 the popup LOV's seem to be resolved. But we still have some problems when trying to update a tabular form that uses ApexLib validation. When trying to update we get an error that 'field' is needed, but the 'field' has been selected from a select LOV.
    The error shows "Row 1: Health ED is required."
    The code is:
    select
    "PERSON_WP_HLTH_ID",
    "PERSON_WP_HLTH_ID" PERSON_WP_HLTH_ID_DISPLAY,
    "PERSON_ID",
    "PERSON_WP_HLTH_ED_CODE",
    "PERSON_WP_HLTH_OTHER"
    from "#OWNER#"."PERSON_WP_HLTH"
    where person_id = :p58_person_id
    I get this in debug mode.
    ...Process "ApexLib-Before Computation/Validation": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) BEGIN ApexLib_Item.setBoolDefault; ApexLib_Item.trimItems; ApexLib_TabForm.trimColumns; ApexLib_Lov.clearLovNullValues; ApexLib_Item.validateItems; ApexLib_TabForm.validateColumns; -- ApexLib_Error.showErrorStack; END;
    I'm not convinced this is ApexLib related, but not sure what else might be the issue. Any thoughts or comments welcome.
    Cheers,
    JB
    Edited by: Forward IT Thinking on Sep 10, 2010 12:01 AM

    Peter,
    I'm fairly new to APEX, would love to put a copy up on apex.oracle.com but not sure on the process. I have an account there, but don't have a packaged application yet so how to do that. If it's a simple process and you can point me to the process that would be appreciated.
    In the mean time, I would have no problem setting up a developer and user account account temporarily for you to take a look. You can email me at [email protected] and I'll get you the info.
    Thanks for you prompt response.
    Regards,
    John Bewley
    Edited by: Forward IT Thinking on Sep 10, 2010 4:02 PM

  • Issue with Parameterized Popup

    Hi,
    I have created a parameterized popup which gets opened on click of an image. Opening the popup is working fine but custom close button (not the X icon) is not working. I have added javascript:closeit() as the destination URI of the button but nothing happens when I click the button. I also tried adding a javascript function for closing the window and put a PPR on the button to forward to the current page and execute the java script but no luck :-( Issue with using X button for closing the popup is - the control is still in the popup processformrequest afer I close the wondow using X. Whatever action I perform on the base page is yielding no results/undesired results. That's why I wanted a custom close button so that I can direct the control back to the calling page.
    Please advise.
    My requirement is to have 2 buttons on the popup region (save and close). On click on save, data should be saved and the calling (base) page should get refreshed and close should just close the popup and bring the control back to the base page. I have a standalone region created with desired fields and buttons and this region is added to the region popup.
    Can anyone please help me with this?
    Thanks in advance.
    Shreevatsa

    Thanks Peddi. Any other option of achieving this functionality in parameterized popup?
    Also I saw the below in the dev guide.
    You can handle user interactions for embedded and parameterized pop-ups as follows:
      All-Submit - Configure buttons on an embedded pop-up to submit the pop-up data and the base page data together. The pop-up closes and the base page submits after this event.
      Self-PPR - Define partial page refresh events on the pop-up to refresh the pop-up window alone. The pop-up remains displayed after a self-PPR event.
      Page-PPR - Define partial page refresh events on the pop-up to refresh the base page items. The popup closes after a page-PPR event.
    I didn't understand completely as what are the differences and how we can enable these actions on popup. I am thinking of Page-PPR which might work for my requirement but I am not sure how to enable this. Is this same as enabling a PPR on a item on the popup region.
    Thanks
    Shreevatsa

  • I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one

    I'm having a lot of issues with firefox and cannot figure out how to get help. It began when I updated to 13. I get all kinds of ad popups, I cannot play one game on FaceBook called Farm Town at all, and I keep getting an AVG popup about cookies that I cannot get rid of. These issues are causing me to use Chrome very often even though I like Fox better. I've searched and searched how to get help and cannot find anything. How does one get personal technical help?? These issues do not happen in Chrome at all. Thanks.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Popup Issue with Application using SSL

    Hi
    I am having an issue with one of our apex applications using SSL.
    I have a few popups in my application and for that I am using the Popup2 function that is built into APEX.
    When I run the app without a secure layer (directly from the server) I am able to get the popups and everything works fine.
    but when I run the app using the regular url https: the popup(s) does not work. When I checked the source code on the web page the error I got is as shown below. I found that the following apex_legacy_4_0.js file was truncated in the source code. It was not retrieved fully.
    Message: Expected '}'
    Line: 1
    Char: 3769
    Code: 0
    URI: https://xxx/i/javascript/apex_legacy_4_0.js
    Can somebody please let me know how I can fix this issue.
    Please Note: This was an application that was working without any issues for more than 2years. All of a sudden (since last month) we are getting this error. According to Our Network and DBA's we have not made any changes/patches to our servers.
    Thanks
    knut
    Edited by: knut on Dec 16, 2011 11:18 AM

    Ok. I figured it out. The url rewrite was missing in the config. Put it there and its working now.

  • Issue with decision popup with yes/no combination

    hI,
    I'm having issue with create_popup_2_confirm method.I'm using yes no option in my popup.But when I click on yes button in the popup though OP_YES outbound plug is getting triggered of component GS_PTC, but not able to get any fired outbound plug in the closing event of popup i.e. event handler Save. CAn anybody help me on this?
    My code is as follows:
    popup = me->comp_controller->window_manager->create_popup_2_confirm(
    iv_title = lv_title
    iv_text = lv_text
    iv_btncombination = if_bsp_wd_window_manager=>co_btncomb_yesno ).
    Then set a close event and open the popup :
    popup->set_on_close_event( iv_view = me
    iv_event_name = 'SAVE' ).
    popup->open( ).
    Code written in Save event handler
    CHECK POPUP IS BOUND.
    lv_confirm_result = POPUP->get_fired_outbound_plug( ).
    CHECK lv_confirm_result = 'YES'.
    Thanks & Regards,
    Anirban

    Hi Anirban,
    I checked the code and I dont think there is any issue.
    The only question I could think of is  ...
    has variable POPUP been declared globally in the SAME view ?
    The outbound plug name 'YES' is case sensitive.
    Regards,
    Masood Imrani S.

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • Cellular reconnectivity issues with 3rd Gen iPad 3G/4G/LTE

      I've read a few other threads regarding a reconnection issue with the new (3rd Gen) iPad. I'm creating a discussion so people can put there thoughts here regarding the issues they are having with reconnection of cellular data connections.
      I have AT&T 64B iPad Gen 3 with 4G/LTE. Black. Works just fine on wifi and my LTE screams at home and work. Faster than my cable at home. I have noticed something behavior regarding data connection when it's lost (like in a tunnel). I ride DC Metro to work and go through a few tunnels. Of course, my data connection drops in the tunnels. When I come back out the indicator on the iPad indicates 5 bars signal and LTE again. Problem is the data connection isn't there, no matter what app I try. I even get a popup window say my cellular data plan has not been activated (huh?). This isn't true since I am on, and have been using a plan. It does this whether it's 4G or LTE reconnection. Not sure about 3G because I haven't seen 3G icon popup on this iPad yet.
    I'm thinking this may be an authentication issue? Else, why would it popup that warning? Anyway, all I do is is go into settings turn cellular data off and back on again and everything is fine.
      I'm guessing that there could be a software fix for this in the future as there are quite a bunch of people having this problem with reconnection to cellular.
    Please post your issues here in this discussion if you have this problem. Maybe we can figure something out.

    I have the same iPad (3rd gen, 4G ATT, 64GB, Black).  When it arrived last Friday, everything seemed to work fine, except the cellular data connection.  It would constantly drop, and I had to toggle cellular data off and back on to get it back.  Also, I was getting really slow speeds (on cellular data only - wifi works fine).  I tried some simple fixes (restarting, resetting the network settings, restoring), but I kept having the problem.  I finally made an appointment at the Genius Bar, and they immediately gave me a new iPad, saying "it could be a bad antenna."  Here is the bad news.  Even with the replacement, the connection seems to drop less often, but it still drops. The part that concerns me most is that the data speeds on my iPad are considerably slower than on my iPhone 4S when I test them in the exact same spot (I use the Speed Test app).  So on my iphone, I get speeds around 3 Mbps, and on the iPad, I get speeds of less than 1Mbps.  I can't see any logical reason that the 3rd gen iPad would not get at least as good or better data speeds as an iPhone 4S.  The fact that I have now had two 3rd gen iPads with cellular data problems concerns me.  However, it is very hard to tell if this is a software, hardware, or network issue.  The fact that my iPhone is running the same update of iOS (5.1), and has no problems would seem to eliminate the software and network as causes, but I can't really be sure.  I am going to watch the posts in the support communities for another day or two and then head back to the Genius Bar.  Overall I love the new iPad, but this has been a real downer. 

  • I'm having a big issue with scripts and sites I need.

    I am an Etsy shop owner and always been able to access my shop just fine all the sudden about three weeks ago I cannot log in to my shop on ff. I can view the Etsy site but when I try to log in it just loads and loads and will not let me. I know it is the script bc I added a script turn off add on and I could log on but Etsy will not let you have it turned off to edit items if your shop so I had to download chrome just to go to my shop which is annoying, I do not like chrome.
    Other than that a few more sites like creative market and a few blogs will not load anymore for me. I have already re-set and that did not work. Also I get a lot of script not responding plugin popups that freeze and crash. This is really annoying. Does anyone know a fix? Thanks..

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and only cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Is it possible to add other templates to the print module?

    If so, how? And is it possible to make a "package." In other words a template with multiple pages. For instance drop in one image and have it auto populate say 1 8x10 2 5x7 4 4x6 and 16 wallets on 81/2" x 11" sheets. Would be really great if you didn

  • Setting MIME type in IIS 4 & 5

    Well I am very impressed with this Web Start technology but it was a little slow downloading via sun's site. I set about trying to set it up on my company Intranet server before I demonstrated to my IT director. I saved the swingset2.jnlp file from t

  • Upgrade Firewire 400 to Firewire 800

    Is it reasonable to upgrade my iMac (see below) from Firewire 400 to Firewire 800? Can I do it?

  • Rhvariable.apj file

    Hi, When I try making changes to the variables, either adding or modifying, I receive a message that an error occurred while trying to read data from the rhvariable.apj file. This message occurs every time I press "Save". How do I fix this? Thanks, J

  • Preloading of next webpages (in forums, search results...)

    Hello all I was wondering if it's possible to enable the "preloading" of next webpages when reading at forums or search results. I find this functionality which allows to just scroll down the page instead of clicking on the "next" button very conveni