Back button not there

I don't have a back button to return to the previous page I was on. How do I get one on there?

QuickTimeKirk wrote:
You don't need the silly buttons to navigate with a browser.
Of course that's true, Kirk, but some people do prefer using buttons to keyboard shortcuts (and in some situations they're actually useful, although like you I don't use them often). More importantly, the fact that they're missing indicates that something has gone awry – most likely just that the toolbar is hidden.

Similar Messages

  • I brought a iTunes card and the the code on the back is not there it has faded away can u please help me with this problem

    i brought a iTunes card and the the code on the back is not there it has faded away can u please help me with this problem

    Hi Daniel ...
    Try here > iTunes Store: Invalid, inactive, or illegible codes

  • Browser back button not working with ADF Application integrated with SSO

    I have integrated an adf application with Oracle SSO Authentication. Application is running fine.
    Though, while navigating between pages, using browser back button , it is not redirecting the url properly
    Should Redirect it to : http://<hostname>:<port>/<contex-root>/<servlet>/<id>
    Presently Redirecting it to :http://<hostname>:<port>/<contex-root>
    As, directory browsing is not allowed, there is Error 403--Forbidden .
    Can anybody tell what changes needs to be made to make browser back button work.

    In some of the documentation I have read, they have mentioned that using the back button in a browser doesn't work too well with any JSF type of application (not just ADF and Jdeveloper apps).
    http://docs.oracle.com/cd/E15051_01/web.1111/b31974/web_form.htm#CFHHJGJH
    Instead, they suggest using buttons on the form.
    There is a video on using navigation between forms that may be of value: http://www.youtube.com/watch?v=bsPtmRID5XI&feature=plcp
    Stuart
    Edited by: Stuart Fleming on Sep 11, 2012 5:30 AM

  • The back button is there but never works. It didn't open in a new tab or window but the back button isn't functioning. I just downloaded Firefox 5.

    Actually, all my details are in that looong question I asked. ; )
    I am ready to go back to 3.6 or whatever version I had because 4 and 5 have had these issues. I tried 4 before but now that I have 5 and the same issue, I remember that I saw this before.
    As I was typing this note, I looked up and saw the back button is actually working on this site. Weird.
    Also, there isn't a button next to the back and forward so I can see my history. Where is that, now? Sometimes, I want to go back 3 or 4 pages at once without loading each page the slow way. Awww, what am I saying? You all know what I mean. :\
    I am using Windows 7 and have been using Firefox for years, so I am familiar with it and it is my only browser of choice so I hope someone can help me. Thanks in advance.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • IE8 back button not working in Login page

    Hello all,
    I have a problem. When I go from one page to a Login page, Back button on IE(my IE version is 8) doesn't work. I use theme 16 - Dark Blue, APEX version - 4.0.2.00.07. Is that a problem from APEX or the theme, or the problem is in IE browser? And if the problem is in the browser, is there any way to fix that?

    In my experience you should not be using the browser buttons when using an Apex app as it can srew with session state etc. You should put navigation buttons in your applications with appropriate branches.
    Gus

  • Back button not working after navigation using method navigate_to_account

    Hi,
    I have the following scenario.
    1. From Account Search navigating to one Account (Page 1 to Page 2)
    2. From Account there is a hyperlink with opens another page (Page 2 to Page 3). For this navigation I am using method  cl_crm_uiu_bp_tools=>navigate_to_account
    3. Page is opening successfully but when I am clicking on the BACK button for the first, nothing is happening. On the second click in the BACK button its navigating back to the Search page. (Page 3 to Page 1).
    So the history is not triggering for Account page (Page 2)
    Please help me with this issue.

    Hi Tapas,
    You actually need to explicitly record it using the below statement.
    RAISE EVENT history_trigger .
    Use this starement before calling the outbound plug.
    Please let me know if you still have any issues.
    Regards,
    Jotsaroop Singh

  • Back button not removing from the stack?

    Hi,
    I have the following code:
    [[self navigationController]pushViewController:_newsDetailController animated:YES];
    However, It doesn't seem to be removing from the stack when the user hits the back button on the UINavigationBar.
    The reason I believe this, is because when you then select another item in my UITableView, it loads exactly the same details as the first time.
    I have tried [_newsDetailController release]; but it still doesn't make any difference. It just crashes after the third selection.
    This is what I'm doing in my didSelectRowAtIndexPath:
    - (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath {
    [[self appDelegate] setCurrentlySelectedBlogItem:[[[self rssParser]rssItems]objectAtIndex:indexPath.row]];
    [self.appDelegate loadNewsDetails];
    Any help would be greatly appreciated. I've spent ages on this!
    It worked fine until I added a UINavigationController.
    Thanks,
    Nick

    Hi Nick, and welcome to the Dev Forum,
    nrawlins wrote:
    ... It doesn't seem to be removing from the stack when the user hits the back button on the UINavigationBar.
    I understand how your observations could make it seem like your _newsDetailController is somehow staying on the stack, but that's not what's going on here. If you want to see the stack, just add some logging before and after pushing or popping:
    NSLog(@"stack: %@", self.navigationController.viewControllers);
    I think we'll need to see more of your code to isolate the problem, but what we're looking for is a logic mistake which causes the detail controller to always display the info for the same item, regardless of which item is selected next. Here's a list of questions to guide your search, and/or show you which code we need to look at:
    1) What's in the array returned by [[self rssParser]rssItems] ? It might help to add some logging in tableView:didSelectRowAtIndexPath like this:
    - (void)tableView(UITableView *)tableView didSelectRowAtIndexPath(NSIndexPath *)indexPath {
    NSArray *item = [[[self rssParser]rssItems]objectAtIndex:indexPath.row]];
    NSLog(@"%s: item=%@", _func_, item);
    [[self appDelegate] setCurrentlySelectedBlogItem:item];
    [[self appDelegate] loadNewsDetails];
    2) What does loadNewsDetails do? It looks like it finds the details for the item stored in currentlySelectedBlogItem. Is that right? Some logging in loadNewsDetails might help to make sure the correct details are loaded there. From your description it sounds like you already had this part of the code working right, but it wouldn't hurt to be sure it's still doing what you expect;
    3) How does the data obtained in loadNewsDetails find its way to the details controller? This is the missing link not shown in the code you've posted so far. I think we need to look at:
    3.1) Where and when the details controller is created;
    3.2) Whether the same controller object is intended to persist from item to item, or whether a new instance of the controller is created each time an item is selected. The latter scheme is usually preferred for best memory management;
    3.3) Is the current item and detail data stored in the detailsController or the app delegate? When is it stored, and when is it used?
    For example, suppose the details controller is only created once and persists for the life of the table view. Then suppose loadNewDetails saves the new details in an ivar of the app delegate, and the code to fetch the new details is in viewDidLoad of the controller.
    In the above scenario, viewDidLoad would run after the details controller was created, and if the details of the first selection were loaded by then, the details for the currently selected item would
    be presented as expected. But viewDidLoad will normally only run once, so when the selection was changed, the new details would never be fetched, and the previous details will be displayed again.
    The best way to avoid this and other related scenarios, is to create a new details controller each time a new selection is made from the table view:
    // MyTableViewController.m
    #import "myAppDelegate.h"
    #import "NewsDetailController.h"
    // called by loadNewsDetails as soon as details have been loaded
    - (void)presentDetailController {
    NewsDetailController *viewController = [[NewsDetailController alloc] // vc retainCount is 1
    initWithNibName:@"NewsDetailController" bundle:nil];
    // store new details in the detail controller; e.g.:
    viewController.navigationItem.title = [self appDelegate].currentlySelectedBlogItem;
    viewController.textView = [self appDelegate].currentDetails;
    [self.navigationController pushViewController:viewController // vc retainCount is 2
    animated:YES];
    [release viewController]; // vc retainCount is 1
    By releasing the new controller in the last line, we reduce its retain count to 1. Now the new controller is only retained by the stack, so when the stack is popped, the new controller will be dealloced.
    If none of the above is helpful, please answer all the questions as best you can and post the indicated code, ok?
    - Ray

  • IE 11 back button not responding

    After opening a PDF document in Internet Explorer 11 I can't get out of it unless I repeatedly and rapidly click on the back button.  What could be wrong?

    Hello,
    I know I'm replying to a 2 month old thread here.. but one of my colleagues raised this issue today and I came across this when using my research & development tool... Google.
    The above answer makes sense to a point..  but if it was a redirect link, and therefore a "webpage issue", shouldn't the problem happen with any browser?
    For example..  if you Google "motor efficiency testing", and click the 7th link (whitelegg.com), with IE11 you will not be able to click "back" to your Google results.  But if you do the exact same process in Firefox or Chrome, the back button works just fine.  In fact, I tested this in IE9, and the back button works fine there as well.  Definitely seems to be an IE11 issue.
    I'm going to do some more digging on this..
    /rb

  • Back Button not working in FireFox 4

    Is anyone else having trouble with the back and forward buttons not working in FireFox 4? I installed 4 on an XP desktop and a Vista 64 laptop, and the forward and back buttons don't work on either installation. Does anyone know a fix for this? I tried deleting the "places" files in the profile and that does not help.

    I am having a problem with the back button also in Firefox 4. Firefox forgets the 1st page in any new session or tab. If I open a tab to say bbc.com and navigate to guardian.com I can't click the back button to get back to bbc.com.

  • Back button not working in safari

    back arrow button not working in safari.

    Safari 6
    Empty Caches
    1. Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    2. Quit Safari if open.
        Option click the "Go" menu in the Finder menu bar.
        Select "Library" and then "Caches".
        Look for the folder 'com.apple.Safari"
        Right click "com.apple.Safari" and select "Move to Trash"
        Relaunch Safari.

  • Back swipe and back button not working in iTunes store

    I am running a 3 year old Mac mini with a Mac bluetooth mouse.  I have OS 10.10.2 installed.  With the latest version of iTunes 12.1.0.50 I stated having the following problem.  I go into iTunes store and see the catalogue page for either movies or songs, I click on either a song or movie that I'm interested in and I get the detail page for that entry.  I then either single finger back swipe on the mouse or use the back button and I return to the catalogue page, but it is blank.  I have to click on the "iTunes store" button in order to get the catalogue page refreshed.  I also don't seem to be able to back swipe in iPhoto to move from one picture to another, but I can swipe in Aperture. I should also note that I'm running Windows 8 under Parallels 10.1.3
    How do I fix this? 

    Fixed.  Tried a lot different things but the ones that seems to have worked is going in Preferences>Advanced and hitting the Reset cache button.  Though I'm not sure it is necessary it never hurts to do a restart.  

  • Back button not working in iTunes 11

    The "Back" button in iTunes 11.1 doesn't work correctly. It doesn't go back to previous screen, but farther back, so that with each "Back" you have to navigate again to where you were.
    For example, if you are viewing "See All Songs" of a particular song from a search, and thten go back, it goes back to the initial search, not the "See All Songs" view you were just on.

    Fixed.  Tried a lot different things but the ones that seems to have worked is going in Preferences>Advanced and hitting the Reset cache button.  Though I'm not sure it is necessary it never hurts to do a restart.  

  • Back button not enabled in Knowledge Check

    How can I have the back button enabled in a Knowledge Check. We want the user to be able to move back to a previous slide, if necessary. I am using Captivate 8.
    Thanks, in advance.

    I suspect you mean a pretest slide? Navigation is disabled when onderging
    pretest slides. Use normal question slides, and do not add their score to
    quiz total or create custom question slides.

  • Back button not working also voice control keeps ringing out on its own

    Hi i have had a new back button put in and its still doing the same thing what else could it be

    It's crazy right? I was going to post something about how I got it fixed, in a few days. But I'll let ya know:
    After getting the run around at the Apple Store, telling me to get a refurbished phone, i went to a local game store based on word of mouth that the man who owns the store fixes iphones.
    He took a look at it and replaced the dock connector and ribbon. He showed it to me and guess what? it was beginning to rust. I suspect the rust messed with the connectors and overall messed with my phone including the home button. Anyways he replaced it with a brand new one and voila! everything works fine. in fact, i've noticed - no kidding here - that my phone is performing better.
    anyways, i never got water near or in my phone but truth it, humidity and dust etc can cause a tiny amount of rust to build up over months and years. iphones are not perfect, so get it checked. it's a hardware issue most likely.

  • Xperia z1 back button not working In camera and album

    Hi,
    I have bought a new xperia z1 last week, I have been facing a problem with back button (arrow at the left bottom screen ). Mostly when I'm using camera and album app. Has anyone else having similar problem in z1. My husband is using z2, he is not having this issue.
    Sony can you help me on this issue.

    Hi,
    Do you mean that the back button works fine for all other applications and so on? You can always boot the phone into safe mode to see if you experience the same behaviour:
    https://talk.sonymobile.com/t5/FAQ/How-to-boot-your-phone-into-safe-mode/m-p/348008
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

Maybe you are looking for

  • Java.lang.Exception: IOException is sending Request :: Connection refused

    Hi, everybody. Oracle Database Control 10g displays on the home page the following message -- java.lang.Exception: IOException is sending Request :: Connection refused after killing some database lock that is impeding the users to successfully carry

  • IE doesn't display part of spry data set!?!?

    Hi there, I hope somebody can help me out with a problem I got with the spry dataset I use on my website. -> http://media-powerplant.de/media-powerplant-referenzen.html The thing is that the IE doesn't display text in the "master" region. There are n

  • JRE 1.4.2_10 Silent install using MSi and JRE 5.0_06

    I have been unable to install JRE 1.4.2_10 using the msi and mst silently. My company requires all applications be installed using and msi not an exe. and with no user intervention. I can install using the msi and mst but not silently,. Also it does

  • Iweb won't publish to file or iweb...to many images?

    I had no problem publishing small site with 10 images. But when I put in 400 images on 5 pages it stops at around 188 and wont publish the rest. I have deleated the images it hangs on, emptied cash, rebooted, and it still hangs and displays same imag

  • Database Adapter: Selecting all data from table

    Hi All I am new to SOA Suite and I am using Soa Suite version 10.1.3.1 and Jdev version 10.1.3.3. It is required to select data from one database using the database adapter and insert it in a table in another database. I implemented the flow using DB