Safari 3.0.4 Back button issue

Hi All,
when i am running my application on safari 3.0.4 i am getting the onload problem.
Whenever i am creting a item first time i am getting all buttons on the dialog window properly.but when i select Back after one successful creation and again while creating Item i am not getting the Buttons on dialog window properly.
May be onload issue.
Please help me to fix this issue.
Thanks in Advance
Kotagi

Hi All,
when i am running my application on safari 3.0.4 i am getting the onload problem.
Whenever i am creting a item first time i am getting all buttons on the dialog window properly.but when i select Back after one successful creation and again while creating Item i am not getting the Buttons on dialog window properly.
May be onload issue.
Please help me to fix this issue.
Thanks in Advance
Kotagi

Similar Messages

  • Safari 7.0.4 Back button often greyed out.

    Since updating to Mavericks and getting Safari 7.0.4 with that, often my Safari back button is greyed out when clicking on a link in a page. When a link opens a new window, of course there will be no back button function for that new window until you click on to another page. That is not the problem. My back button is greyed out often when I click on a link that changes the current window to the new page without giving me a new window. Normal surfing stuff. I have had to use my History dropdown to go back to the previous page.

    Delete the cache and troubleshoot Safari extensions and plug-ins...
    pen a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, try troubleshooting extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Agreggator - Back Button Issue

    I have a course that is made up of multiple modules (projects). I am using an aggregator to pull all the modules together.
    My question is that I would like a Back button that goes to the last slide visited. I can get this to work when the previous slide is within the same module. But if the last slide is from another module this does not seem to work.
    Can anyone tell me how I can get this to work?

    Did you check your site in any other browsers yet? Your menu
    is totally
    messed up on Win XP in Firefox 3; the drop downs don't work
    at all in IE6;
    but menu seems to work in Safari.
    Why do you have all of these spaces in your lists?
             &nbsp...
    Suggest running your pages through the HTML code validator
    here:
    http://validator.w3.org/
    And the CSS validator here:
    http://jigsaw.w3.org/css-validator/
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Ios safari clear history hold back button bug

    try to clear you hisotry
    go to safari
    hold the back button
    it will still sometimes show your history.
    i've tried this by clearing it through bookmarks and clearing through the general>settings menu and both have this bug
    is this just me or anyone else?

    this actually happens if you close your tabs still. It shows you what you were looking at even AFTER you cleared your history!

  • Report S_PL0_86000030 - G/L Account Balance - Back button Issue

    Hi
    We are on ECC 5.0 and when we click on the BACK button, from the report display it straight way goes back to SAP standard  screen (both when we save or do not). It does not go back to the selection screen of the report.
    I searched OSS and could not find any possible resolution.
    Could anybody know how this can be fixed? Any patch?
    Thanks,
    Surajit

    This can be achieved by clicking on Characterstic Key & Name - both option under Settings --> Characterstic Display (you can get these options if you run the report under Classical Drilldown mode)
    Also if you can just change the same thing in the report layout - it will be permanent - Transaction FGI0.
    Thanks,
    Surajit

  • Using Back button issue for radio button

    Dear All,
    My initial screen has 2 radio buttons, on selecting will take to a selection screen with few fields, i have enabled the back button using MODULE user_command AT EXIT-COMMAND.
      when i select a Radio Button 1 which takes to the Selection Screen 1, if the user clicks back button it works fine, even thou we got a mandatory field, it goes back,
    however when i click Radio Button 2 it still takes me to Selection Screen 1, its the same vice versa.
    Is there anyway i can change the screen based on radio button entry

    Hi Krishan,
    You can call your desire selection screen based on the button click.
    if you are working on report program (SE38), then say you have two radio button p1 and p2 and also you have created two selection screen block B1 and B2 and each block has some selection screen elements i.e fields.
    Now if you want that after radio button click b1, you want the only selection screen block B1 and while clicking radio button b2 click ,you want only selection screen block B2.
    Two acheive this in report programming, use the event AT SELECTION-SCREEN OUTPUT.
    so a demo code for the same,
    SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-049.
    PARAMETERS: p_header RADIOBUTTON GROUP asim USER-COMMAND s DEFAULT 'X',
                                p_item RADIOBUTTON GROUP asim.
    SELECTION-SCREEN END OF BLOCK lim.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-051.
    PARAMETERS : p_vbeln TYPE vbak-vbeln MODIF ID sc1,
                  p_audat TYPE vbak-audat MODIF ID sc1.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-050.
    PARAMETERS : p_vbeln1 TYPE vbap-vbeln MODIF ID sc2,
                                 p_posnr TYPE vbap-posnr MODIF ID sc2.
    SELECTION-SCREEN END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
       IF p_header EQ 'X'.
         LOOP AT SCREEN.
           IF screen-group1 = 'SC1'.
             screen-active = '1'.
           ELSEIF screen-group1 = 'SC2'.
             screen-active = '0'.
           ENDIF.
           MODIFY SCREEN.
         ENDLOOP.
       ELSEIF p_item EQ 'X'.
         LOOP AT SCREEN.
           IF screen-group1 = 'SC2'.
             screen-active = '1'.
           ELSEIF screen-group1 = 'SC1'.
             screen-active = '0'.
           ENDIF.
           MODIFY SCREEN.
         ENDLOOP.
       ENDIF.
    If you are working with Module POOL, then code in the PAI of the screen, and call your respective screen while respective button click.
    code:
    MODULE user_command_900 INPUT.
         IF p1 EQ 'X'.
              CALL SCREEN 9001.
         ELSEIF p2 EQ 'X'.
              CALL SCREEN 9002.
         ENDIF.
    NOTE: your screen 9001 have some screen input fields and 9002 have some screen input fields.
    Thanks & Regards
    Syed

  • Back button issue in ALV Grid(Factory method)

    Hi All,
    I have displayed a report using factory method(CL_SALV_TABLE).In that i have added buttons in application bar too.So when clicking on refresh button ALV should display again with latest number of records,that is working fine but when clicking on back button it should go to selection screen instead of that it is going a step back and displaying previous list of grid and then back and then selection screen.
    Can any one help me how to directly go to input selection screen instead of going step back...
    Regards,
    Ram

    HI,
    Use this syntax (CALL SELECTION-SCREEN 1000)...Try this one
    regards,
    balaji

  • ADF Browser Back Button Issue

    Hi All,
    I am using jdeveloper version 11.1.1.6.0.
    when I use browser back button to go to back page it behaves in very bad manner a popup comes saying
    "To display this page,Firefox must send information that will repeat any action (such as search or order confirmation ) that was performed earlier"
    and Resend and Cancel button came at the bottom of the popup If I cancel it then it does not show proper information.
    What is the way to handle back button in such a way that it should not behave in bad way get back to previous state.

    Hi All,
    In webcenter portal their is client state saving mechanism which stores states of the client .We have to make an entry in web.xml file.
          <context-param>
                     <param-name>
                          org.apache.myfaces.trinidad.CLIENT_STATE_MAX_TOKENS
                     </param-name>
                     <param-value>
                            3
                    </param-value>
           </context-param>      I refered following URL.
    http://docs.oracle.com/cd/E25178_01/core.1111/e10108/webcenter.htm#CCHIEBDG
    Does increasing this value is an answer to my question

  • Back button issues

    (New mac owner, casual OSX user before buying my MBP)
    When I hit back when browsing files in the finder, is there anyway to keep the vertical location of the previous folder? It always defaults to the top, which I find very annoying.
    It seems the vertical position is kept if I use enclosing folder (cmd+uparrow), but not if I use back, is this normal?

    It's a bug of icon view. It seems to happen for me when I navigate to a folder that has less items than is necessary to show a scrollbar for. When a vertical scrollbar is available in the next folder I navigate to, the position is is preserved in the previous view.
    I've not seen any setting to force it to remember where the view was saved.
    You can however, set it up so that you browse the Finder with more than one window, thus keeping the setting of the previous folder without changing it.
    The way to do this is go to Finder menu -> Preferences -> General, and check the checkbox "Always open folders in new window".

  • Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Cheryl...
    Go to ~/Library/Caches/com.apple.Safari
    Move the Cache.db (or ApplicationCache.db) file from the com.apple. Safari folder to the Trash.
    Restart your Mac. Launch Safari. Try the back button.
    ~ (Tilde) character represents the Home folder.

  • Mailto links open google (desired) but load in current tab, moving away from website, and cannot hit "back" button to return.

    I have firefox set to open "mailto" links, which is desired. However, when clicking the link, the gmail compose window opens in the current tab/window, and therefore leaves the website. Most of the time, the "back" button is not active, so I cannot get back to the website. The back button issue does not happen 100% for some reason.
    To further explain, this is a website I am creating, so I am not sure if the fault lies with my code or in the google mailto option in firefox. (Code shown below)
    >>>>>
    <a class="email" href="mailto:[email protected]">email: [email protected]</a>
    >>>>>
    I tried using a target in the mailto link, but they seem not to work with mailto links like they do for links to other webpages. (Code shown below)
    >>>>>
    <a class="email" href="mailto:[email protected]" target="_blank">email: [email protected]</a>
    ---or---
    <a class="email" href="mailto:[email protected]" target="_new">email: [email protected]</a>
    >>>>>
    Any pointers will help. Is my code bad? Or if the problem is with firefox's way of handling mailto links, is there a way to code to get around this?

    I don't wanna claim total credit for it. I remember seeing someone mentioned a Back button problem with McAfee Add-on in the forum. I dismissed it initially because it seems far-fetched...

  • Back button in IE vs. Firefox

    Hi all,
    I'm wondering if anyone can shed some light on a problem I'm having. I have a jsp page where the user submits a form for their invoice history. That works no problem. If there is a matching invoice number a new window opens, if pop ups are allowed, and the user now has a PDF copy of their invoice. If pop ups are blocked, the PDF opens in the same window.
    Here's where the problem starts... in Firefox if the PDF opens in the same window and I hit the back button, I go back to my jsp page with a blank form. Exactly what I want to happen.
    In IE, the back button just reloads the PDF in the current window. If I hit back multiple times really fast I can get back or if I view my history and choose the jsp page I can go back.
    Is there are known work around? It's not a real big issue but it can be annoying and not everyone is savvy enough to figure out how to get back in history.
    Thank you in advance to anyone who can help.

    Hi all,
    I'm wondering if anyone can shed some light on a
    problem I'm having. I have a jsp page where the user
    submits a form for their invoice history. That works
    no problem. If there is a matching invoice number a
    new window opens, if pop ups are allowed, and the
    user now has a PDF copy of their invoice. If pop ups
    are blocked, the PDF opens in the same window.
    Here's where the problem starts... in Firefox if the
    PDF opens in the same window and I hit the back
    button, I go back to my jsp page with a blank form.
    Exactly what I want to happen.
    In IE, the back button just reloads the PDF in the
    current window. If I hit back multiple times really
    fast I can get back or if I view my history and
    choose the jsp page I can go back.
    Is there are known work around? It's not a real big
    issue but it can be annoying and not everyone is
    savvy enough to figure out how to get back in
    history.
    Thank you in advance to anyone who can help.Browser back button issue is discussed in different veins in different places on the Net. But my limited memory does not have this IE and PDF problem. Try do google around.
    If you could provide a URL for a dummy jsp that dispatches a dummy PDF for general testing purpose, we might be able to test it on different versions of the OS and the notorious browser.

  • In place refresh, back button

    I am wondering if any one has tried to fix the "back button" issue when they use the inplace refresh option with a portlet. For those that dont know, when you are on say the third page of an application and you hit the back button, the user would expect it to go to the second page. Instead it goes to the page before you started clicking on the portlet. Let me know your thoughts everyone.

    We are facing the same issue, will appreciate any ideas on possible solutions.
    Thanks,
    Laura

  • Issue with Safari's back-button, swipe, and scrolling

    After installing the recent security and iTunes update (12.0.1) I installed this morning, I've noticed that Safari's back-button, back mouse-swipe, and mouse scrolling will stop working on occasion. When this happens I can open a new tab or restart the browser and things are OK for a while. Safari's keyboard controls continue work when this happens. Mouse controls in other apps are fine.
    I'm running:
    - OS X 10.9.5 (13F34)
    - MacBook Pro, 13-inch, Early 2011
    Any ideas?

    The site you visited (with the trailer in it) uses a redirect script. When you hit the "Back" button, you are going back to the redirect page, which then redirects you back to the trailer, lol! What you want to do is to press and hold down the "Back" button, then go back two (sometimes more) pages and avoid the redirect.
    It's a common occurrence on many sites. It's not a Safari glitch. I agree it is annoying.

  • Since the os7 update on my iPad, my safari is not right, it only opens one page at a time, crashes when trying to open more, it has no back button. Help

    Since the os7 update on my iPad, my safari is not right, it only opens one page at a time, crashes when trying to open more, it has no back button. Help

    Well, I rebuilt the entire workbook... that was a few months ago and so far, the problem hasn't resurfaced. It really wasn't fun to do, but whatever glitch there was in the file, I eliminated it.
    I think I should mention that I am using Office v.X, NOT Office 2004. I got a new Intel iMac this week and yesterday when I opened up my files, it opened up the test drive (a JOKE of a program if you ask me) Anyway, some of the very minor issues I had with Office v.X were solved in the 2004 version. (When opening up large multi worksheet files without Excel being already opened, the tabs have white text) Anyway, I am still going to wait for the universal version to come out, but it seems that the newer versions may have fewer glitches (as is to be expected)
    At any rate, best of luck to you!

Maybe you are looking for