Breadcrumb doesn't retain the previous page values

I have the following hierarchy in my pages. home > search > summary > details.
The user goes to the search page gives a criteria and the summary page shows all the required matching results. Now the summary results is a table of name, id, date etc. The id field is a hyper link which when clicked takes to the details page.
My problem is that when I am on the details page and I click on the "summary" breadcrumb it works fine and navigates to the summary page but doesn't show the results that it previously showed. So the breadcrumb forgets the values.
Also I have another problem: Say a user enters a search criteria and there are no results found and the user is now in the summary page. Then if the user clicks on the search breadcrumb the search page opens. It works fine till here. But this is what is required. In the text fields the value with which the search was performed should be present.
Can anyone help please ?
Thanks in advance.

Any one with any ideas as to how to go about implementing this ?
Bread Crumbs is working fine but it doesn't retain the values !!!!!!!
Thanks in advance.

Similar Messages

  • The latest version of Firefox loads with the Ask page and doesn't retain the selected home page. How do I change this?

    I downloaded the latest Firefox version. Upon loading it it doesn't retain the previous Home Page setting and always reverts to the Ask page, which is always indicated as the Home Page. This is annoying. How do I overcome this problem?

    #Remove Ask Toolbar (if you have it installed):
    #*http://support.mozilla.org/en-US/kb/Uninstalling+add-ons
    #*http://support.mozilla.org/en-US/kb/Cannot%20uninstall%20an%20add-on
    #*http://kb.mozillazine.org/Uninstalling_toolbars
    #Reset your home page (if the Ask search page is displayed when starting Firefox): http://support.mozilla.org/en-US/kb/How+to+set+the+home+page
    #*You can reset to the default by clicking "Restore to default" on Options > General > Startup > Home page. Be sure to set "When Firefox starts" to "Show my home page" on that same panel.
    #Reset your Location Bar search engine (if typing a few words in the URL/Location Bar takes you to Ask search):
    #*type '''''about:config''''' in your Location Bar, like typing a web site address, and press the Enter key
    #*ignore warning and choose to continue
    #*in Filter, type '''''keyword.URL'''''
    #*in lower part of screen, if it is '''bold''' and shows "'''user set'''", right-click keyword.URL and choose "Reset"
    #*in Filter, type '''''Ask'''''
    #*any items in lower part of screen in '''bold''' and showing "'''user set'''", right-click and choose "Reset"
    #*close about:config tab
    #*See:
    #**http://kb.mozillazine.org/About:config
    #**http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28external_-_search_engine.29
    #**http://kb.mozillazine.org/Keyword.url
    #**http://www.techrena.net/computers/address-bar-search-provider-firefox/
    #If Ask is shown in your Search Bar and you want to remove it:
    #*https://support.mozilla.org/en-US/kb/Search%20bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How to prevent going back to the previous page by hitting the Back button ?

    In the html code I generate from my servlet, I have the following :
    <Html>
    <Head>
    <Title>Cox Part Time Benefit App Login Page</Title>
    <Meta http-equiv="Pragma" content="no-cache">
    <!-- Pragma content set to no-cache tells the browser not to cache the page. This may or may not work in IE -->
    <Meta http-equiv="expires" content="0">
    <!-- Setting the page to expire at 0 means the page is immediately expired. Any vales less then one will
    set the page to expire some time in past and not be cached. This may not work with Navigator -->
    <Meta http-equiv="Cache-Control" content="no-cache">
    <!-- This directive indicates cached information should not be used and instead requests should be forwarded
    to the origin server. This directive has the same semantics as the PRAGMA:NO-CACHE -->
    </Head>
    I hope it can prevent user from going back to the previous page by hitting the Back button on the browser, but it doesn't, what's the right way to do it ?
    Frank

    I think I'm half way now, but something is missing. I have the following filter :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class ResponseHeaderFilter implements Filter
      FilterConfig fc;
      public void doFilter(ServletRequest req,ServletResponse res,FilterChain chain) throws IOException,ServletException
        HttpServletResponse response=(HttpServletResponse)res;
        for (Enumeration e=fc.getInitParameterNames();e.hasMoreElements();)        // Set the provided HTTP response parameters
          String headerName=(String)e.nextElement();
          response.addHeader(headerName,fc.getInitParameter(headerName));
        chain.doFilter(req,response);                                              // Pass the request/response on
      public void init(FilterConfig filterConfig)
        this.fc=filterConfig;
      public void destroy()
        this.fc=null;
    }And in my web.xml, I have something like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      <servlet>
      </servlet>
      <servlet-mapping>
      </servlet-mapping>
      <session-config>
      </session-config>
      <welcome-file-list>
      </welcome-file-list>
    <resource-ref>
    </resource-ref>
    <filter>
      <filter-name>ResponseHeaderFilter</filter-name>
      <filter-class>ResponseHeaderFilter</filter-class>
      <init-param>
        <param-name>Cache-Control</param-name>
        <param-value>private,no-cache,no-store</param-value>
       </init-param>
      <init-param>
        <param-name>Pragma</param-name>
        <param-value>no-cache</param-value>
       </init-param>
      <init-param>
        <param-name>expires</param-name>
        <param-value>0</param-value>
       </init-param>
    </filter>
    </web-app>I rebuilt the project and ran it, and yet, I can still hit the "Back" button and get to previous page, what am I missing ? Is what I've done in the web.xml file enough to set it up, or do I need to call ResponseHeaderFilter somewhere in my servlet in order to use it ?
    Frank

  • The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?

    The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?
    Help, please.

    Try clearing Safari's cache : Settings > Safari > Clear Cache (and Clear History)
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Some browser doesn't display the MW page correctly

    after installing Maintenance Wizard 2.17, some browser doesn't display the MW page correctly, some menu function is missing. The display problem is not for everyone, some user's browser have no problem. Some user's IE are displaying it correctly. i.e. one user has both IE and firefox working, however, after she clear her java cache, both browser refuses to display the MW page correctly.
    The resolution of PCs is set to the same value. however, the size of the text isn't. after changing the size of the text, some of our pc start to work. The display web page for MW doesn't show the right most menu item. After resize the screen, we find it is because of the blue frame for the MW page that stop to dynamical stretch up to 20 inches.
    The menu item is been streched out of the blue frame, they are no longer displayable
    any ideas?

    We have the same problem.
    And find it is caused by a combination of your screen resolution, font size and browser window size.
    The blue frame that displays the Oracle Mainentance Wizard banner doesnt dynamical strech to the full window size.
    After experiment with it, MW can display much better in our case.

  • Problem in retaining the array of values for entire session !!!

    Hi,
    I have a form with multi record block. When user inserts a new line each time , this value should be compared with the previous entered values.
    For this , I tried with the PL/SQL table. Whenever I am coming out of each line after insertion into forms, I am trying to store that values into PL/SQL table. I wrote a procedure to store the value. I am calling this in "new record Instance".
    I need this value in the "Validate item trigger" to compare each new line insertion with the old values which is already stored in Pl/SQL table.
    Now my problem is after storing into PL/SQL table, I am not able to use this values in "Validate item trigger". Because the value stored in the table are getting erased.
    Can you please help me how can I solve this problem. The vaues should retained for a entire session. Its urgent.
    Thanks
    Alaka

    Hi,
    I have already created Package and procedures in it. Declared PL/SQL table in the package specification as a global.
    I am using one procedure to insert into the PL/SQL table which, I am calling in "New record Instance".
    Created another procedure to fetch that value for validation in "When Validate Item" trigger.
    This is not working for me, even though I declared PL/SQL table as global.
    Please suggest If anything wrong in this.
    Thanks
    Alaka

  • Populate a bind variable depending on the previous page.

    Hi,
    How do you populate a bind variable depending on the previous page (where the user is “branching from”)?
    Example.
    Page 10 has a report:
    Select Value1_Desc
    From Table
    Where Value1_ID = :P10_VALUE1_ID
    Page 5 can branch to page 10 and pass along the Value1_Desc from P5_VALUE1_ID into :P10_VALUE1_ID.
    Page 8 can also branch to page 10 with an item value based on the same field, passing Value1_ID from P8_VALUE1_ID into :P10_VALUE1_ID.
    Is there a way to make the report in page 10 accept the proper bind variable value depending on the previous page?
    Thanks
    Matt

    Matt,
    Page 5 can branch to page 10 and pass along the Value1_Desc from P5_VALUE1_ID into :P10_VALUE1_ID.Page 5 can branch to page 10 and pass along the VALUE1_ID from P5_VALUE1_ID into :P10_VALUE1_ID.
    The normal method is to have the branch pass the value in the URL, e.g., the branch from page 5 would specify:
    f?p=&APP_ID.:10:&SESSION.::NO::P10_VALUE1_ID:&P5_VALUE1_ID.
    Scott

  • After the latest OS update, Safari locks up when trying to flip back to the previous page

    After the latest OS update, Safari locks up when trying to flip back to the previous page using the two finger sweep.

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and
         after the chime press and hold down the OPTION key until the boot manager screen appears.
         Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
         Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).

  • It's so annoying!! I have created a new Apple ID but after I click verify it just goes back to the previous page!!! It''s really frustrating I have tried for more than 4H, and the problem is not about the apple ID. I can download apps with the apple ID, w

    It's so annoying!! I have created a new Apple ID but after I click verify it just goes back to the previous page!!! It''s really frustrating I have tried for more than 4H, and the problem is not about the apple ID. I can download apps with the apple ID, which means IMessage is the problem! I restarted my iPad, I logged in and out of the apple ID in the store, AND YET IT STILL WON'T WORK, PLEASE HELP!

    Hi Vmanfromusa!
    It sounds like you are having an issue with activating your iMessage app on your iPad. An article outlining some troubleshooting steps for this issue can be found here:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How do I prevent Pages from pushing paragraphs to next page when they would otherwise begin on the last line of the previous page?

    I am writing papers for school which have strict page limits so I can't afford to be losing lines at the bottom of a page because Pages thinks it looks better to have a new paragraph start on the next page. It does this automatically and I have to go back and manually format to get the first line of the paragraph to start on the last line of the previous page. This then creates problems down the line when I am editing so I would really like to be able to turn the feature off.
    e.g. with Pages auto-formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
    -----page 2-----
         Paragraph #3 blah blah
    blah blah
    e.g. after manual formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
         Paragraph #3 blah blah
    -----page 2-----
    blah blah

    Change the keep with next rules in:
    Inspector > Text > More > Pagination & Break
    Peter

  • HT1430 My IPAD 3 [5.1.1 (9B206)] has a problem. - It restarts every three (3) minutes: it goes out then comes back but lost the previous page (auto lock is set to 15 minutes) - It can no longer connect to the mobile network orange except Wireless (WIFI)

    My IPAD 3 [5.1.1 (9B206)] has a problem.
    - It restarts every three (3) minutes: it goes out then comes back but lost the previous page (auto lock is set to 15 minutes)
    - It can no longer connect to the mobile network orange except Wireless (WIFI)

    Not normal. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • When I am on Safari, the page randomly goes back to the previous page I was on. This is really frustrating when I am writing something online because it does not save my work. Fix for this?

    When I am on Safari, the page randomly goes back to the previous page I was on. This is really frustrating when I am writing something online because it does not save my work. Fix for this?

    (A) Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.
    (B) Reset all settings
    Settings>General>Reset>Reset all settings
    Note: Data will not be affected but settings will be reset.

  • My company recently loaded foxfire and I cannot have two applications open in foxfire, the second page overlays the first and I cannot go back to the previous page or reduce the first page to view the first.

    My pages in Foxfore are overlaying one another which is normal but you cannot get back to the previous page. An example is if I have a page opened in a program and open something totally different it replaces the first page and I cannot reduce the size to see the first page I was viewing nor go back to it. I did open a page with audio and opened another application in foxfire and the replacing went on as usual but the audio continued to play so the page is stinn there. Also the tool bar page showing icon is replaced with the newly opened page not an additional page opened being shown as a tab. It's like the newest page or site I open in Foxfire replaces the one that is currently opened.
    == This happened ==
    Every time Firefox opened
    == I first had sites opening with Foxfire

    This might be caused by a recent Flash 11.3 update.
    See:
    *https://support.mozilla.org/kb/flash-113-doesnt-load-video-firefox
    *https://support.mozilla.org/kb/keep-flash-up-to-date-and-troubleshoot-problems
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Websites+look+wrong

  • How to i get rid of the redirect notice it shows up on my safari whenever i try to go to a different page  it says "the previous page is sending you to: LINK if you do not want to visit this page, you can return to the previous page"

    How to i get rid of the redirect notice it shows up on my safari whenever i try to go to a different page
    it says "the previous page is sending you to: LINK
    if you do not want to visit this page, you can return to the previous page"

    Yeah, this seems to be something to do with Google, not your iPhone. A search on that error found this page:
    http://www.google.com/support/forum/p/Web%20Search/thread?tid=56a3c4b71b3dc1d9&h l=en
    which shows people using lots of browsers on different platforms suffering from it. No definitive solutions though.

  • Is there a keyboard shortcut to open the previous page in a new tab that is right next to the current tab?

    Let's say I'm currently on page X, and the previous page I came from was page Y. Is there a keyboard shortcut to open page Y in a new tab right next to the tab with page X?
    Currently my only solution is to hold down cmd (for mac) and click the back arrow button, but again, I'm looking for a keyboard shortcut. I know CTRL + T opens up the same page in a tab right next to the current one, but I have to wait for it to load then press backspace to go back one page.

    Hello marsfoxbeta, command + shift + T
    [https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#os=mac&browser=fx22 Keyboard shortcuts - Perform common Firefox tasks quickly]
    thank you

Maybe you are looking for