ADF Menus for Page Navigation

I have completed the [ADF Menus for Page Navigation|http://www.oracle.com/technology/products/jdev/11/cuecards/adf_set_43/ccset43_ALL.html] tutorial.
Everything work as expected, with one exception. The 'Add and Bind Navigation Pane Components' section has you put a Navigation Pane in the menBar facet of the panel header. In the Hint dropdown you select 'buttons' and set some other properties.
When I run the finished project, the menu items in the menbar are displaying vertically instead of horizontally as the image with the tutorial shows. Why? How do I get them to display horizontally?
I really like that menu model and plan utilizing it in real world application; unfortunately, have the menubar dislay vertically in the panel header is unacceptable.
<f:facet name="top">
        <af:panelHeader text="ADF Menu Example" id="pt_ph1" size="0">
          <f:facet name="context"/>
          <f:facet name="menuBar">
            <af:navigationPane id="pt_np1" hint="buttons" var="menuInfo"
                               value="#{root_menu}">
              <f:facet name="nodeStamp">               
                  <af:commandNavigationItem text="#{menuInfo.label}"
                                            id="pt_cni1" icon="#{menuInfo.icon}"
                                            destination="#{menuInfo.destination}"
                                            action="#{menuInfo.doAction}"/>
              </f:facet>
            </af:navigationPane>
          </f:facet>
          <f:facet name="legend"/>
          <f:facet name="info"/>
        </af:panelHeader>
      </f:facet>

Ok, I am still at a loss as to why this is happening.
It seems to be related to the either navigationpane or the menu meta data.
I have only foudn one difference so far. The tutorial states that JDeveloper us org.apache.myfaces.trinidad.model.XMLMenuModel managed bean class by default; however, my project used oracle.adf.view.rich.model.MDSMenuModel. When I use the XMLMenuModel, the only visible diference is in the Visual Editor and the Preview panes. The menus appear horizontally in those panes, but not when you run the application in a web borwser.
Still troubleshooting.
[Tutorial: ADF Menu Model Managed Beans|http://www.oracle.com/technology/products/jdev/11/cuecards/adf_set_43/ccset43_tellme4_5.html]
My project code:
<?xml version="1.0" encoding="windows-1252" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
  <metadata-resource>/WEB-INF/adfc-sale-config.xml</metadata-resource>
  <metadata-resource>/WEB-INF/adfc-products-config.xml</metadata-resource>
  <view id="home">
    <page>/home.jspx</page>
  </view>
  <view id="help">
    <page>/help.jspx</page>
  </view>
  <view id="preferences">
    <page>/preferences.jspx</page>
  </view>
  <view id="shop">
    <page>/shop.jspx</page>
  </view>
  <control-flow-rule id="__1">
    <from-activity-id id="__2">*</from-activity-id>
    <control-flow-case id="__3">
      <from-outcome id="__4">adfMenu_home</from-outcome>
      <to-activity-id id="__5">home</to-activity-id>
    </control-flow-case>
    <control-flow-case id="__6">
      <from-outcome id="__7">adfMenu_help</from-outcome>
      <to-activity-id id="__8">help</to-activity-id>
    </control-flow-case>
    <control-flow-case id="__9">
      <from-outcome id="__10">adfMenu_preferences</from-outcome>
      <to-activity-id id="__11">preferences</to-activity-id>
    </control-flow-case>
    <control-flow-case id="__12">
      <from-outcome id="__13">adfMenu_shop</from-outcome>
      <to-activity-id id="__14">shop</to-activity-id>
    </control-flow-case>
  </control-flow-rule>
  <managed-bean id="__15">
    <description id="__17">Menu Model Managed Bean</description>
    <managed-bean-name id="__16">root_menu</managed-bean-name>
    <managed-bean-class>oracle.adf.view.rich.model.MDSMenuModel</managed-bean-class>
    <managed-bean-scope id="__18">request</managed-bean-scope>
    <managed-property id="__20">
      <property-name id="__19">createHiddenNodes</property-name>
      <value id="__21">false</value>
    </managed-property>
    <managed-property id="__23">
      <property-name id="__25">source</property-name>
      <property-class id="__24">java.lang.String</property-class>
      <value id="__22">/WEB-INF/root_menu.xml</value>
    </managed-property>
  </managed-bean>
</adfc-config>

Similar Messages

  • Transitions for page navigation windows phone 8 VS3013

    Hi. I installed the WPtoolkit and the
    Microsoft.Phone.Controls.Toolkit is under the references in References folder and I still can't use thenamespace
    Microsoft.Phone.Controls.Toolkit.dll in code-behind file? How do I add transition effects between page navigation? Thank you in advance.
    I also tried to add this line in the XAML:
    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

    Here's an example.
    Open a new project and select the Windows Phone Silverlight Databound App template (using this as an example because it has multiple pages already set up).
    Install WPToolkit using Nuget.
    In App.xaml.cs, search for this line:
            RootFrame = new PhoneApplicationFrame();
    and replace it with this:
            RootFrame = new TransitionFrame();
    In both MainPage.xaml and DetailsPage.xaml, add the xmlns:
        xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    and add this xaml before the LayoutRoot:
    <toolkit:TransitionService.NavigationInTransition>
    <toolkit:NavigationInTransition>
    <toolkit:NavigationInTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardIn" />
    </toolkit:NavigationInTransition.Backward>
    <toolkit:NavigationInTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardIn" />
    </toolkit:NavigationInTransition.Forward>
    </toolkit:NavigationInTransition>
    </toolkit:TransitionService.NavigationInTransition>
    <toolkit:TransitionService.NavigationOutTransition>
    <toolkit:NavigationOutTransition>
    <toolkit:NavigationOutTransition.Backward>
    <toolkit:TurnstileTransition Mode="BackwardOut" />
    </toolkit:NavigationOutTransition.Backward>
    <toolkit:NavigationOutTransition.Forward>
    <toolkit:TurnstileTransition Mode="ForwardOut" />
    </toolkit:NavigationOutTransition.Forward>
    </toolkit:NavigationOutTransition>
    </toolkit:TransitionService.NavigationOutTransition>
    /li>

  • Possible to use menuBar with task flow based ADF menus?

    Hello -
    I've just worked through the " [Create ADF Menus for Page Navigation|http://www.oracle.com/technology/products/jdev/11/cuecards111/adf_set_43/ccset43_ALL.html] " tutorial. It shows how to create menus based on your task flows.
    My question: is it possible to use the af:menuBar with these menu models (instead of navigationPanes or breadcrumbs) ?
    I am using JDev 11g 11.1.1.1.0
    Thanks.
    Edited by: scott.turnquist on Nov 5, 2009 12:07 PM

    Hi,
    The XML menu model extends the Trinidad TreeModel, which extends Collection model. This allows you to access the hierarchical menu structure so that you can use af:iterator to build a structure to display in a af:menuBar
    Frank

  • Dynamic Menus for Navigation

    i have a question about Dynamic Menus for Navigation... i am a new in jsf/adf... and i want a suggestion about my new application i am trying to do:
    my boss has give me all the items that the menu will have.... and this menu will be the same for all the pages...this menu is 3 level deep... i have created all the pages for all the menu item in the page navigation and i have also created some navigation rule... that means that everything is static... dont know if this solution is correct and will not lead me to a lot of problems in the future....
    i aslo sow the Dynamic Menus for Navigation in the SRDemo application .... but my answer is can i create the Dynamic Menus if i havent create the model layer...????

    I AM LOST :(.... PLEASE GUYS... ONE OF YOU SHOULD GIVE ME SOME TIPS ON HOW TO CREATE A DYNAMIC MENU... CAN I USE THE THE MENUITEM.JAVA FILES IN SRDEMO.... DO I HAVE TO CHANGE ANYTHING IN THE CODE?
    In the SRDEMO application the menu has only two levels ... what do i have to do if i want a menu with 3 levels??? thanks in advance :(

  • Previous page navigation after on click of cancel button of a form in adf

    Hi,
    Can any one tell how previous page navigation works in adf?
    I am working on a portal page which is having a common footer for all jspx pages.This footer contains a golink for feedback form.
    so the problem is when I Navigate to any page (# page 1)and then Navigate to some other page (#page 2) and on click of Feedback link displayed on footer of page 2 Feedback form is displayed. and on Click of Cancel button of the form.
    Expected Result:
    User should be navigated to the page that they were on. (i.e., Page 2)
    Actual Result:
    User is navigated to page 1 instead of page 2
    i.e it is taking browser previous url.
    I am using the following code for the cancel button
    <af:commandLink text="Cancel" id="cl5">
    <af:clientListener method="goBack" type="click"/>
    </af:commandLink>
    java script....
    function goBack()
    window.history.back()
    Edited by: 993530 on Apr 23, 2013 3:35 AM

    Hi,
    Immediate = true is already been set for cancel button
    The problem is when i come back to the 1st page vo is getting executed again and is taking lot of time.. i need to see that vo does not get executed again
    in the vo for view criteria -- query execution mode , i have made as in memory and now it has become fast on click of cancel button. But i am getting the following error when i perform search in the first page
    Missing FROM in a SELECT statement
    An unexpected expression token is found.
    Thanks,
    .

  • Navigation for Page Thumbnails no longer on sidebar, now a pop-up?

    I've noticed in the last day or two that my Pages feature on the left hand navigation bar is no longer there.  When I go to View>Navigation Panels>Pages it will come up but in a pop-up window.  Why is this? 
    I rely on this feature to move pages back and forth between documents on two different monitors and the pop-ups for each document won't both appear at once.  For example, when I click a thumbnail in a document on my left monitor the pop up that was in a document on my right monitor will disappear...therefore I have no where to drag the page to. 
    Is there any way that I can get the Pages navigation tool bar to show back up on the left hand side toolbar (with bookmarks, attachments, signatures, etc.)? 
    Btw, I have Adobe Acrobat 9 Professional, Microsoft Windows XP Professional Version 2002 SP3.  I also have an Evermap Plug-in for bookmarks on my Adobe but I've had that for over 6 months and haven't had this issue until the last 2 days or so. 
    Thanks,
    Jaime

    Sometimes when an answer is that easy it can make you feel extremely dumb!  That worked just as you both said.  I'm not sure if I feel worse that it was that easy or that I spent two hours searching online and in the forums for the answer??
    I really appreciate the quick--and correct--response gentlemen!
    Jaime

  • ADF :Hello world Page and discussion for its deployment with Oracle guys!

    I have written a small article of creating hello world page in ADF with screenshtots,here is the link:
    http://mukx.blogspot.com/2008/03/adf-hello-world-page.html
    This article can help you for a self starter with ADF and some baisc idea of same components in both OAF and ADF.
    Here is the link of recent mail conversation with Oracle guys for ADF project deployment:
    http://mukx.blogspot.com/2008/04/discussion-for-deploying-adf-project-in.html
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Mukul,
    Thanks for the tute, am new to ADF so this was of great help to me. I had a query, if i want to have my own look and feel web pages and Oracle ADF ones, does the custimzation involve too much of manual coding or can be done easily in ADF. Also is there an equivalent tag to div in ADF Faces

  • When i am logging to my company intranet site for every page navigation it is asking for credentials

    When i am logging to my company intranet site for every page navigation it is asking for credentials

    Also, if the navigation works most of the time but you are prompted for every single image, I suggest restarting Firefox and trying again.
    The following also might help in that situation: When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • How to Create Page Navigation : ADF Swings

    How can i create Page Navigation in ADF swings ,which displays 20 records per page .
    Regards
    Bhanu Prakash

    Hi,
    if you base this on ADF then just edit the table binding to show 20 records at a time. The default is 10
    Frank

  • Pages navigation panel for Adobe 9.

    Is anyone having any problems with the pages navigation panel. When i have all my pages showing in the
    left corner the very last page seems to be hiding at the very bottom, and will not let me scroll down any farther.
    All i see is the very top of the page.

    Hi, this is a one-time verification request from Bob Staples.  Sorry for this extra step asking you to verify you are a living, breathing human.  I recently experienced an substantial increase in spam, which has driven me to increase my spam screening software.  This one-time verification message is a part of it.
    To complete this verification, please click 'Reply' and leave the subject line intact (very important).
    If you did not send me an email, my apologies; just delete this.
    Sincerely,
    Bob Staples

  • ADF 10.1.3 : no mean to put off the option "display all" in page navigator

    Hi everybody,
    In top right of a table componenent, there is a page navigator (1-10 of 1000, 11-20 of 1000 and so on).
    The first option of this sub-component is "Display all of 1000".
    I'd like to put off this option but i haven't seen any property to allow that ?
    Otherwise, is there a mean to forbid this action ?
    Christophe,
    Edited by: cpierres on Aug 11, 2009 9:34 PM

    cpierres wrote:
    This is a good idea.
    Unfortunately, it sounds like a "all or nothing" solution.
    but very interesting idea.
    Thank you very much for your answer,Not necessarily all or nothing - if you can find a directive that does what you want, you can put it in your skin's CSS file like this:
    noDisplayAll {
        # directive to tell af:table to disallow display all
      }Then set the table attribute styleClass="noDisplayAll" for any table to which you want to apply this.

  • Under "Basic" in the "Printer Settings" of the Print menu, the dropdown menus for both "Page Setup: Sheet" and "Media Type" are frozen.

    Frozen selections: I'm working from my Intel iMac trying to print (from both Aperture and Photoshop CS5) to my new Epson 4900 printer. When the Print menu comes up, under the "Basic" section of the "Printer Settings" the dropdown menus for both "Page Setup" and "Media Type" won't activate. All other options and selections work fine. Just these 2 are not functioning. What's up with that??

    Here we are 15 months later and Microsoft Excel 2013 has the SAME ERROR
    If one chooses:
    Print Preview
    Page Setup
    Sheet
    Then the print area and print titles (Rows to repeat at top, columns to repeat at top)
    are all grayed out and cannot be selected.
    If, however, I choose the
    page layout bar and click print titles then
    everything works fine.
    Thanks for the solution!!!

  • Fire fow will not let me use curtain buttons and drop down menus for web sites. i had version 7.01 and upgraded to verson 8.02b and it did it on both of them. and the web pages work find if i use chrome

    Firefox will not let me use curtain buttons and drop down menus for web sites. i had version 7.01 and upgraded to verson 8.02b and it did it on both of them. and the web pages work find if i use chrome

    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 21.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will lose all personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • ANN: Flash navigation menus for Dreamweaver

    WebAssist is proud to announce the release of FlashNav Menus,
    a collection
    of 9 search-engine friendly, Flash menus for Dreamweaver.
    FlashNav Menus
    were developed by master Flash programmer Dmitry Molchanov of
    f-source.com
    and combine easy to modify and search engine compatible HTML
    links with
    animated Flash menus.
    FlashNav Menus are $94.99.
    For more information, visit:
    http://www.webassist.com/professional/products/productdetails.asp?PID=124
    Best - Joe
    Joseph Lowery
    Vice President of Marketing, WebAssist
    Author, Dreamweaver 8 Bible

    carl wrote:
    > would you suggest to install the updater - without
    giving you any
    > responsibility for whatever you recommend
    The only problems that I am aware of with the updater are
    these:
    * Some third party extensions currently don't work with
    Dreamweaver 8.0.2.
    * The Test SQL Statement panel doesn't render correct results
    for MySQL
    functions.
    * The recordset dialog box strips out the MySQL CONCAT()
    function from
    SQL queries.
    Item 1 isn't a major concern to me, as I rarely use the
    extensions
    affected (mainly MX Kollection 3 and extensions created by
    Tom Muck).
    Items 2 and 3 do concern me, but since I'm aware of them, I
    can easily
    work around them.
    I have installed the 8.0.2 updater, and don't have any plans
    to
    uninstall at the moment. The changes to the server behaviors
    improve
    security, so that's an important reason to update. On the
    other hand, if
    you rely heavily on extensions created by InterAKT or Tom
    Muck, you may
    be better off waiting until they have updated their products,
    too.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • How to use Partial Page Navigation

    according to Web User Interface Developer's Guide for Oracle Application Development Framework section 7.4.1 How to Use Partial Page Navigation,
    I set 'oracle.adf.view.rich.pprNavigation.OPTIONS' to 'on' in the web.xml.
    and in the jspx, I use af:commandNavigationItem to navigation and set the tag 'partialSubmit' attribute to true.
    But it does not work. does anybody know how to use this feature?

    Hi,
    the question is "what does not work". Partial Page Navigation is there to improve performance on page navigation. So if you navigate from page1 using a navigation case to end up at page 2 then the outcome of the command action's action property should match the navigation case name.
    Frank

Maybe you are looking for