PRG issue in richfaces menu navigation..

hello i have an issue, my footer is polling ajax request,
i have used PRG in menu navigation,i am setting some data in bean in menu item's action which is in request scope , but as its PGR it is getting lost in the target view, how to resolve this, i don't want to go for putting data in session scope,if i dnt use PRG then the URL on the browser is not getting updated even though the page is changed..
how to resolve.. ?
<navigation-rule>
        <from-view-id>/pages/*</from-view-id>
        <navigation-case>
            <from-outcome>PAGE1</from-outcome>
            <to-view-id>/pages/ABC/PAGE1.xhtml</to-view-id>
            <redirect/>
        </navigation-case>if i remove this "*<redirect/>*" then the navigation works fine, and i am getting all the data that was set in action that was called when menu item 's action was performed (it is obvious )
but the URL in the browser is not updating,.. (i mean if i click menu item from page1, then page will be changed to page2 but the URL is page1 only..)
how to over come.. ?
i don't want to use session scope for those data..

If Dreamweaver is not keeping the setting, it means that you haven't saved the style sheet (File > Save All Related Files).
Looking at your screenshot, the link in the centre of the padding tool is in the default state. This is what it looks like before you start:
When you click the chain icon, the links join together like this:
When they're joined together, you can set all sides to the same value by changing just one.
If the link in the chain icon is broken, each side must be set separately.

Similar Messages

  • URGENT -  EBP: menu navigation error !!!

    hi everybody,
    Could somebody give me a clue about this ?   I'm just starting my EBP config, but I have an error with the menu navigation (browser - ebp).
    If I click any option on the menu, the main page is loaded again in the inner frame (nested).   So I can't enter to any option, because it loads the main page inside again and again.   =(
    Any clue about this ?
    Thanks so much for your help,
    Regards from Mexico,
    Diego

    Hi Diego,
    the issue I think is that the system cannot resolve the url link for each transaction.
    Are your entries in TWPURLSVR maintained and correct?
    Regards
    Chris

  • How can change background color of drop down menu navigation?

    Hi,
    I am using multi level drop-down-navigation menu in my website.
    I am get good drop-down menu from htmldrive.net, but problem is how can change menu background color black to other colors.
    please help me
    Link & code is given below
    http://www.htmldrive.net/items/demo/913/Multi-Level-Drop-Down-Menu-Navigation-with-CSS3
    HTML Code
    <div id="nav">
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About Us</a></li>
    <li><a href="#">Our Portfolio</a></li>
    <li><a href="#">One Dropdown</a>
            <ul>
            <li><a href="#">Level 2.1</a></li>
            <li><a href="#">Level 2.2</a></li>
            <li><a href="#">Level 2.3</a></li>
            <li><a href="#">Level 2.4</a></li>
            <li><a href="#">Level 2.5</a></li>
            </ul>
    </li>
    <li><a href="#">Three Levels</a>
            <ul>
            <li><a href="#">Level 2.1</a></li>
            <li><a href="#">Level 2.2</a></li>
            <li><a href="#">Level 2.3</a>
                    <ul>
                    <li><a href="#">Level 2.3.1</a></li>
                    <li><a href="#">Level 2.3.2</a></li>
                    <li><a href="#">Level 2.3.3</a></li>
                    <li><a href="#">Level 2.3.4</a></li>
                    <li><a href="#">Level 2.3.5</a></li>
                    <li><a href="#">Level 2.3.6</a></li>
                    <li><a href="#">Level 2.3.7</a></li>
                    </ul>
            </li>
            <li><a href="#">Level 2.4</a></li>
            <li><a href="#">Level 2.5</a></li>
            </ul>
    </li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact Us</a></li>
    </ul>
    </div>
    CSS CODE
    #nav {
            float: left;
            font: bold 12px Arial, Helvetica, Sans-serif;
            border: 1px solid #121314;
            border-top: 1px solid #2b2e30;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            overflow: hidden;
    #nav ul {
            margin:0;
            padding:0;
            list-style:none;
    #nav ul li {
            float:left;
    #nav ul li a {
            float: left;
            color:#d4d4d4;
            padding: 10px 20px;
            text-decoration:none;
            background:#3C4042;
            background: -webkit-gradient( linear, left bottom, left top, color-stop(0.09, rgb(59,63,65)), color-stop(0.55, rgb(72,76,77)), color-stop(0.78, rgb(75,77,77)) );
            background: -moz-linear-gradient( center bottom, rgb(59,63,65) 9%, rgb(72,76,77) 55%, rgb(75,77,77) 78% );
            background: -o-linear-gradient( center bottom, rgb(59,63,65) 9%, rgb(72,76,77) 55%, rgb(75,77,77) 78% );
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 5px rgba(0, 0, 0, 0.1) inset;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            border-right: 1px solid rgba(0,0,0,0.2);
            text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6);
    #nav li ul {
            background:#3C4042;
            background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.09, rgb(77,79,79)), color-stop(0.55, rgb(67,70,71)), color-stop(0.78, rgb(69,70,71)) );
            background-image: -moz-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
            background-image: -o-linear-gradient( center bottom, rgb(77,79,79) 9%, rgb(67,70,71) 55%, rgb(69,70,71) 78% );
            border-radius: 0 0 10px 10px;
            -moz-border-radius: 0 0 10px 10px;
            -webkit-border-radius: 0 0 10px 10px;
            left: -999em;
            margin: 35px 0 0;
            position: absolute;
            width: 160px;
            z-index: 9999;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) inset;
            border: 1px solid rgba(0, 0, 0, 0.5);
    #nav li ul a {
            background: none;
            border: 0 none;
            margin-right: 0;
            width: 120px;
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            border-bottom: 1px solid transparent;
            border-top: 1px solid transparent;

    Change this:
    .ddsmoothmenu{
    font: bold 12px Verdana;
    background: #414141; /*background of menu bar (default state)*/
    width: 100%;
    to this:
    .ddsmoothmenu{
    font: bold 12px Verdana;
    background: #new color code;
    width: 100%;
    And repeat this on other selectors.
    Nancy O.

  • Accordion widget as a menu navigation

    I want a vertical menu navigation, with some pages having sub level pages.
    The vertical menu widget only seems to position the sub level links to the right. But i want it all vertically stacked with the sub level links only showing when on that page. 
    e.g.
    I have tried using the accordion widget as a menu navigation, by removing the show/hide content and adding the sub level link in the needed ones.
    But when i set the links to the pages the active states don't seem to work when on the particular pages. Any ideas?
    Any suggestions how best to achieve this?
    Thanks
    Nick

    Hello,
    When you say that the active state does not seem to work, if we take the example you have posted above, You want the Design should be expanded when you are on Exhibition Design page and "Exhibition Design" should show the active state. Correct?
    In that case you would need to place the Accordion Widget not on Master page but on  each page Separately.
    And on the pages where you want the Top Manu Labels to be open (expanded), keep them  open on that Particular page in Design view before Publishing/Exporting the site.
    This way, you would be able to achieve the states for the submenus and expansion of Top Menu on the particular pages.
    Regards,
    Sachin

  • How to add links to left menu navigation

    I go to Site Settings > Look and Feel > Navigation and add the links to "Structural Navigation: Editing and Sorting" (which is blank even though my left menu navigation has 8-10 links). I added some some links but these never display.
    I am able to modify the navigation menu just fine on project subsites, just not the PWA

    Will assume you are using PS2013. This is by design. The left navigation (Quick Launch) for PWA home page is controlled by a different setting. You can add your link by navigating to
    Server Settings >> Quick Launch
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Menu navigation buttons do not appear when viewing page on iPhone

    My webpage shows the menu navigation buttons on all browsers and platforms but when viewing on an iPhone they are not there. Hence you cannot view other pages. Is this a restriction of pages created in iWeb or am I doing something wrong?
    I have trawled through the discussion forum and tried tips such as the height of the menu bar from the top on the page, pixel width and making sure the menu box is at the front or brought forward.
    my website is www.sussexgolfcaptains.org

    This may or may not be of interest, but some site builders (such as weebly.com) are mobile friendly — click here:
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html   http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    Also, unlike sites made with iWeb, Weebly sites respond to desktop Safari's +View > Zoom In+ command — this is helpful for many who don't have perfect eyesight for reading small text. (iWeb's default font sizes are relatively small.)

  • Help: Buggy (broken) Blu-ray menu navigation

    This is really frustrating. I have an Encore 2.0 project, previously used to build an SD DVD, using AVI/AC3 output from Premiere (built from what had been HDV video). REALLY basic menu buttons (no animation, or anything like that). They simply have standard highlights (which show as an arrow next to the button). In fact, those buttons weren't anything fancy that I built, they were simply standard buttons supplied in a previous Encore package. They worked fine in Encore 2.0 when the project was used to burn an SD DVD.
    I've been sitting on the Premiere and Encore projects for several years, waiting for the HD support, so when I upgraded to CS3, I transcoded some a set of MV4/AC3 files in Premiere, and re-opened my original Encore project with the CS3 version; and then simply replaced the original AVI/AC3 files with new MV4/AC3. I then flipped the Encore project settings to burn a BR disk. I had to re-point the menu links (to the chapters in the new video file), but made NO changes to the content of the menus (i.e. all of the menu components are exactly what they were before). Within Encore, I previewed the Menu functionality and they work perfectly (i.e. the pseudo-remote moves the arrow/highlight between the buttons, and I can jump between my two menu pages, as well as jumping into my chapters). Everything LOOKED great.
    So then I burned a disk (first one, on my new BR burner!). It burned great. I popped it in my Panny, and when the first menu popped up, I immediately clicked Enter (as my default button was to "Play"). That worked fine (so the button is "functional"), and my movie played (it was great to finally see my HDV footage in its full resolution). But then I jumped back to the menu to test out the rest of the menu capability. That's when the disappointment set in. The problem is that the menu navigation is all non-functional. I am unable to move between the buttons on my opening menu (and hence, can't even get to my submenu). It's just like the remote isn't working. And it's not like the buttons are "really" moving, but just not being highlighted properly, as I've played with the remote to test that possibility (based upon having seen some posts along those lines). It's simply that the navigation is "dead". It's dead when the disk is first loaded, and dead if you jump back to the menu after playing the movie. Of course, all "other" DVD and (commercial) BR disks work just fine.
    So... the obvious question that I have is whether anybody else has seen any such behavior, or whether I'm the only unlucky SOB to suffer this problem? This is the sort of "buggy crap" (in Encore and/or Premiere) that has driven me crazy over the years (thru numerous version). This is absolutely one of the simplest projects (all of "seven!" resources listed on the Resource tab). How in the world have they managed to muck up the navigation in the menus, on something this simple? I'm clueless as to what I can even try, that might resolve the problem (especially when the menus work perfectly while being previewed). It simply looks like Encore has some basic bug that results in it mangling the menus when it builds them before the burn process.
    Any input/thoughts would obviously be appreciated.
    (BTW, everything is fully patched.)

    Not yet. Don't really have another player at my disposal. I have a relative with PS3, and hope to test it on that at some point, but I live (and work) out in the boonies, so it'll be a bit before that happens.

  • Does anyone know how to default Menu navigation to open to specific folder

    Does anyone know how to default Menu navigation to be opened to a specific folder when User first log on to PEOPLSOFT with peopleTool version 8.48 or above?

    There are several notes on Oracle Support with a few options...
    E-Portal: How to Redirect a User To Specific Component Page at Login? [ID 649958.1]
    E-PORTAL: What Methods Are Available To Redirect Users To A Specific Page At Login? [ID 757458.1]
    Regards,
    Bob

  • How to create a project's Menu in PeopleSoft left hand Menu Navigation ?

    Folks,
    Hello. My PeopleSoft project has 3 items (item1, item2 and item3). Each item has 5 components (Component1, Component2, Component3, Component4 and Component5).
    Currently, I can acces each component by type in the URL in Browser as follows:
    http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want my project to appear in the left hand "Menu" navigation after we sign on PeopleSoft. My project Menu will look like a hierarchical tree. When the user click on it, the user can see all the project's items and components and link to a component directly. But I don't understand how to do it.
    Do any folks understand how to create a project's Menu in PeopleSoft left hand Menu navigation ?
    Thanks in advance.
    :

    >
    >
    I have registered each component using Registration Wizard in Application Designer. Since each Menu holds a Component, the Menu is also registered while registering its Component. So far, I can access each component online using the URL: http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want to create a Menu for my project as a hierachical tree ( Project -> Item1 -> Component1, Compoent2, ...),
    and I want the project Menu appears in PeopleSoft left hand Menu navigation so that a user can simply click on it to access a component and don't need to type in the above URL. Please answer me 2 questions:
    First, how to make the project Menu appear in PeopleSoft left hand Menu navigation ? I am still not sure what you are trying to do(It is surprising that you registered the component and still dont have it in the main navigation; did you run the portal security sync process?? ).
    If it is all a matter of having a hierarchical structure, then you can create folders and subfolders and register each item accordingly(into different folders and subfolders as you want)
    Second, if need to register each Menu seperately again, how to do it ?Delete entries for content references that you added earlier while registering(by navigating to portal), as well as the entry from permission lists. After that you should be able to register again.

  • Hide left menu navigation

    Hi All.
    How to create left menu navigation?
    http://i046.radikal.ru/1107/25/75b9a842bc40.jpg
    1 To it was possible to place content under menu
    2 To, depending on conditions, the menus appear and disappear automatically
    Thanks

    1) This is a tricky one... As shown in your diagram, you require 2 composer components. Depending on the use case, you want to edit the small content below the navigation and in another one, the regular content on the page.
    In WebCenter, you can only have a single region with a composer. The composer itself, can define multiple regions but not as you describe.
    If, howver it is a simple document that you can store in UCM, than you can easily add the content presenter to your template in that region. This way, people will still be able to edit that specific content item.
    If, however it is a complete region where you want the users to be able to add portlets, taskflows and so on. Than i'm afraid this will not be possible or definitly not easy to implement.
    So if you could be more specific of the type of content that you want to show and who will be able to edit that content than we might help you.
    2) Do you only want the submenu to dissapear or the complete menu? Normally this can be done. When you create a template, you can add attributes to it. When you bind these to page parameters, you should be able to make this dynamic.
    I haven't tried this but i guess it is possible.

  • Issues with old menu entries and old custom menus [Xfce]

    Hello, this is the issue:
    The main menu keep showing old entries for programs I already deleted: For example, I have an entry for the indie game FEZ even tough I already deleted this game. I know that programs have a .desktop file located in "~/.local/share/applications" and/or in "/usr/share/applications", but I already deleted both files and this is not happening just with the FEZ entry but with other old menu entries including custom entries. I don't know why the keep showing up even tough I removed both .desktop files for each one of those entries. I think that there is another file that I'm missing or some kind of menu cache that I have to update but I don't which nor how. Additionally I have to say that I'm using the whisker menu plugin but the entries also show up on the stock xfce4 menu.
    Any help will be greatly appreciated.
    Thanks in advance, Shadow_Reaper13
    Last edited by Shadow_Reaper13 (2014-09-20 01:13:14)

    I forgot to say that those annoying entries does not appear neither on menulibre nor in alacarte so I cannot delete them using one or another. Those entries does not appear on those menu editors even before I delete the .desktop files.

  • Menu Navigational Buttons

    I have created a DVD in Premier Essentials 12.  The navigational forward and back menu buttons work in the completed movie's "Disc Preview" mode on the computer, but these navigational buttons showed up but did not work on the burned DVD.  Why not and how can I fix?

    I have two main menus with a Play All, Scene, and two other "personalized"  (January and February on the first main menu and March and April on the second main menu) buttons.  Because I needed a total of four personalized "month" buttons, the main menu automatically carried over to a second main menu page.  I have always set up my family videos so that you can play all, navigate to a particular individual movie (scene), or view by the month (multiple "scenes" in each month).  This is how I have done all my previous DVDs when I used the Roxio program.  My family like this setup.  Actually Roxio allowed me to set up my main menus with the months, and when you clicked on the month, you were navigated to a "submenu" that included all the individual movies for that particular month.  Premiere Elements menus do not include this navigation format.  So, I have a Main Menu 1 page 1, Main Menu page 2, and (you are correct) separate scene menus Scene Menu page 1, Scene Menu page 2, and Scene Menu page 3 (which are not organized by month but just chronologically...five to a menu).  The problem is that the forward and back buttons to get both back and forth from Main Menu pages 1 and 2 and all the Scene Menus are not being recognized by either of the two DVD players I tried but are working fine when I put the DVD in the computer and work in "Preview Disc."  None of the forward/back buttons work on any of the menus.  After hours of playing around, I did find that the menus do go forward and back in the DVD player when I use the down, left, and right arrows on the remote to navigate totally off the bottom of the television screen where there is just black.
    Hope this helps.  I will work on trying to burn a DVD with just the preset menus and see if the forward/back buttons work then.  My question is in order to do this, do I have to make an actual movie using my clips in order to get the menus to work?  I don't want mess around with anything on my current "family DVD" (except get the forward/back buttons to work!). 
    Date: Tue, 11 Feb 2014 14:50:08 -0800
    From: [email protected]
    To: [email protected]
    Subject: Menu Navigational Buttons
        Re: Menu Navigational Buttons
        created by A.T. Romano in Premiere Elements - View the full discussion
    GagaDVDMaker
    I do not recall if I asked "When you are not seeing the previous and next buttons, how many menu pages do you have?"
    If you have 12 scene markers and the Memories/Family Memories theme (5 scene buttons per scene page), do you have
    Main Menu
    Scene Menu page 1
    Scene Menu page 2
    Scene Menu page 3
    Are previous and forward buttons not seen any where?
    ATR
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6111420#6111420
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6111420#6111420
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6111420#6111420. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Premiere Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Pull tab menu navigation issue

    I've been running into some issues within pull tabs. It’s currently being used for the navigation within the folio (see attached PNGs).
    There seems to be a .125 second to even a .5 second delay on the interactivity with the buttons. The rate at which they respond is reacting differently each time they're touched but all are approximately within the interval .125 - .5 seconds. The navigation itself is a PNG and the interactivity is implemented through 8 rectangle frames converted into button forms placed over the top of their associated buttons. Have you ever heard of someone experiences issues concerning usability when converting frames into button forms?
    I’m thinking that it’s got to be something to do with DPS not being able to respond to the created button forms appropriately or it’s a bug within the pull tab that delays button sensitivity implementing the lag when the user initiates it's action.
    Any help on this would be greatly appreciated!

    My apologies, that portion was copied from an email I sent to a colleague regarding the matter.
    I always convert no fill/stroke frames to buttons on top of the artwork - not the artwork itself. My co-worker who's been working with DPS for years does it differently. Wanted to confirm that.
    Still having issues on response time..

  • Question about ADF Menu Navigation

    i create an adf application, include ADF Menus for Page Navigation.
    i found the URL displayed in the browser always show previous page when switch between different tabs.
    http://dl.dropbox.com/u/6517186/Application14.7z
    this is the application I've created.when click tab1,it shows view2 url. click tab2,it shows view1 url.
    not sure if there is mistake in my configuration? or a adf issue? thanks

    Use redirect option to create a new browser URL for the view activity.
    So try adding a <redirect/> tag in the site-menu.xml as:
    <view id="view1">
    <page>/view1.jspx</page>
    <redirect/>
    </view>
    <view id="view2">
    <page>/view2.jspx</page>
    <redirect/>
    </view>
    Edited by: umesh.agarwal on May 10, 2012 2:06 AM

  • The menu navigation on top hides behind embedded video object,when the embedded object is .wmv file

    When you mouseover on the Top Navigation menu. The menu bar hides behind the embedded wmv video object. This issue doesnt happen if the video object embedded is a you tube video and also this page works correctly in IE7

    Lightbox with any other content should work as expected where slideshow will bring the fade effect for all other contents on page.
    Please provide the page link where you see this behavior.
    Thanks,
    Sanjit

Maybe you are looking for