You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Richard Yee <ri...@gmail.com> on 2008/01/02 19:34:55 UTC

[Trinidad] Is the the "level" attribute in Trinidad equivalent to the "startDepth" attribute in ADF Faces?

I'm porting an application from the old ADF Faces to Trinidad. In ADF Faces,
I have this in a .jspx page inside an af:panelPageHeader element:
            <f:facet name="menuGlobal">
              <af:menuButtons var="menu1Item"
value="#{menuModel_main.model}"
                              startDepth="0"
                              inlineStyle="padding:0em 0em 0.5em">
                <f:facet name="nodeStamp">
                  <af:commandMenuItem text="#{menu1Item.label}"
                                      accessKey="#{menu1Item.accessKey}"
                                      action="#{menu1Item.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{menu1Item.icon}"
                                      rendered="#{menu1Item.type ==
'global'}"/>
                </f:facet>
              </af:menuButtons>
            </f:facet>
            <f:facet name="menu1">
              <af:menuTabs var="menu1Item" value="#{menuModel_main.model}"
                           startDepth="0" inlineStyle="text-align: left;">
                <f:facet name="nodeStamp">
                  <af:commandMenuItem text="#{menu1Item.label}"
                                      accessKey="#{menu1Item.accessKey}"
                                      action="#{menu1Item.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{menu1Item.icon}"
                                      rendered="#{menu1Item.type ==
'default'}"/>
                </f:facet>
              </af:menuTabs>
            </f:facet>
          <f:facet name="menu2">
              <af:menuBar var="menu1Item" value="#{menuModel_main.model}"
                          startDepth="1" inlineStyle="text-align: left;">
                <f:facet name="nodeStamp">
                  <af:commandMenuItem text="#{menu1Item.label}"
                                      accessKey="#{menu1Item.accessKey}"
                                      action="#{menu1Item.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{menu1Item.icon}"/>
                </f:facet>
              </af:menuBar>
            </f:facet>

in my converted page, I have
            <f:facet name="navigationGlobal">
              <tr:navigationPane hint="buttons" var="menu1Item"
value="#{menuModel_main.model}"
                              level="0"
                              inlineStyle="padding:0em 0em 0.5em">
                <f:facet name="nodeStamp">
                  <tr:commandNavigationItem text="#{menu1Item.label}"
                                      accessKey="#{menu1Item.accessKey}"
                                      action="#{menu1Item.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{menu1Item.icon}"
                                      rendered="#{menu1Item.type ==
'global'}"/>
                </f:facet>
              </tr:navigationPane>
            </f:facet>
            <f:facet name="navigation1">
              <tr:navigationPane hint="tabs" var="tabItem"
value="#{menuModel_main.model}"
                           level="0" inlineStyle="text-align: left;">
                <f:facet name="nodeStamp">
                  <tr:commandNavigationItem text="#{tabItem.label}"
                                      accessKey="#{tabItem.accessKey}"
                                      action="#{tabItem.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{tabItem.icon}"
                                      rendered="#{tabItem.type ==
'default'}"/>
                </f:facet>
              </tr:navigationPane>
            </f:facet>
            <f:facet name="navigation2">
              <tr:navigationPane hint="bar" var="buttonItem"
value="#{menuModel_main.model}"
                          level="1" inlineStyle="text-align: left;">
                <f:facet name="nodeStamp">
                  <tr:commandNavigationItem text="#{buttonItem.label}"
                                      accessKey="#{buttonItem.accessKey}"
                                      action="#{buttonItem.getOutcome}"

useWindow="#{menu_enrollment.useWindow}"

windowWidth="#{menu_enrollment.windowWidth}"

windowHeight="#{menu_enrollment.windowHeight}"
                                      icon="#{buttonItem.icon}"/>
                </f:facet>
              </tr:navigationPane>
            </f:facet>

However, what I am getting is the navigationGlobal and navigation1 items
getting displayed correctly but in the menu bar where navigation2 is, I am
seeing the navigationGlobal and navigation1 items as menu buttons and not
the sub menu items.

Thanks for any help in advance,

Richard

Re: [Trinidad] Is the the "level" attribute in Trinidad equivalent to the "startDepth" attribute in ADF Faces?

Posted by Matt Cooper <ma...@gmail.com>.
Hi Richard,

I haven't had a need for the MenuModel since the early days of
Trinidad--before the XmlMenuModel existed.  At that time, I was just using
managed beans in the faces-config.xml.

Regards,
Matt

On Jan 2, 2008 1:30 PM, Richard Yee <ri...@gmail.com> wrote:

> Matt,
> Thanks for your reply. Are you also using XmlMenuModel with Trinidad or do
> you have the menus configured in managed beans in faces-config.xml.
>
> -Richard
>
>
> On 1/2/08, Matt Cooper <ma...@gmail.com> wrote:
> >
> > Hi Richard,
> >
> > I believe the answer is that startDepth and level are almost the same.
> > There is one subtle difference.  The difference is that in 10.1.3 ADF
> > Faces, the top level of the tree was spread out onto multiple areas based
> > upon the commandMenuItem's type attribute.
> >
> > In 10.1.3 ADF Faces, I think it worked this way:  the top-most set of
> > links/buttons are those commandMenuItems using startDepth="0" and
> > type="global", the primary tabs were startDepth="0" and type != "global"
> > secondary tabs were those using startDepth="1".
> >
> > In Trinidad, type is irrelevant and the tree is allocated exactly to the
> > level (aka depth) in the MenuModel tree; to get something to appear in the
> > top-most area, you'd just use level 0, for primary tabs, use level="1", for
> > secondary tabs, use level="2".
> >
> > Regards,
> > Matt
> >
> > On Jan 2, 2008 11:34 AM, Richard Yee <ri...@gmail.com> wrote:
> >
> > > I'm porting an application from the old ADF Faces to Trinidad. In ADF
> > > Faces, I have this in a .jspx page inside an af:panelPageHeader element:
> > >             <f:facet name="menuGlobal">
> > >               <af:menuButtons var="menu1Item"
> > > value="#{menuModel_main.model}"
> > >                               startDepth="0"
> > >                               inlineStyle="padding:0em 0em 0.5em">
> > >                 <f:facet name="nodeStamp">
> > >                   <af:commandMenuItem text="#{menu1Item.label}"
> > >                                       accessKey="#{menu1Item.accessKey
> > > }"
> > >                                       action="#{menu1Item.getOutcome}"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{ menu1Item.icon}"
> > >                                       rendered="#{menu1Item.type ==
> > > 'global'}"/>
> > >                 </f:facet>
> > >               </af:menuButtons>
> > >             </f:facet>
> > >             <f:facet name="menu1">
> > >               <af:menuTabs var="menu1Item"
> > > value="#{menuModel_main.model}"
> > >                            startDepth="0" inlineStyle="text-align:
> > > left;">
> > >                 <f:facet name="nodeStamp">
> > >                   <af:commandMenuItem text="#{menu1Item.label}"
> > >                                       accessKey="#{menu1Item.accessKey}"
> > >                                       action="#{menu1Item.getOutcome}"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{menu1Item.icon}"
> > >                                       rendered="#{ menu1Item.type ==
> > > 'default'}"/>
> > >                 </f:facet>
> > >               </af:menuTabs>
> > >             </f:facet>
> > >           <f:facet name="menu2">
> > >               <af:menuBar var="menu1Item"
> > > value="#{menuModel_main.model}"
> > >                           startDepth="1" inlineStyle="text-align:
> > > left;">
> > >                 <f:facet name="nodeStamp">
> > >                   <af:commandMenuItem text="#{menu1Item.label}"
> > >                                       accessKey="#{menu1Item.accessKey}"
> > >                                       action="#{menu1Item.getOutcome}"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{menu1Item.icon}"/>
> > >                 </f:facet>
> > >               </af:menuBar>
> > >             </f:facet>
> > >
> > > in my converted page, I have
> > >             <f:facet name="navigationGlobal">
> > >               <tr:navigationPane hint="buttons" var="menu1Item"
> > > value="#{menuModel_main.model}"
> > >                               level="0"
> > >                               inlineStyle="padding:0em 0em 0.5em">
> > >                 <f:facet name="nodeStamp">
> > >                   <tr:commandNavigationItem text="#{menu1Item.label }"
> > >                                       accessKey="#{menu1Item.accessKey
> > > }"
> > >                                       action="#{menu1Item.getOutcome}"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{ menu1Item.icon}"
> > >                                       rendered="#{menu1Item.type ==
> > > 'global'}"/>
> > >                 </f:facet>
> > >               </tr:navigationPane>
> > >             </f:facet>
> > >             <f:facet name="navigation1">
> > >               <tr:navigationPane hint="tabs" var="tabItem"
> > > value="#{menuModel_main.model}"
> > >                            level="0" inlineStyle="text-align: left;">
> > >                 <f:facet name="nodeStamp">
> > >                   <tr:commandNavigationItem text="#{tabItem.label}"
> > >                                       accessKey="#{tabItem.accessKey}"
> > >                                       action="#{tabItem.getOutcome}"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{tabItem.icon}"
> > >                                       rendered="#{ tabItem.type ==
> > > 'default'}"/>
> > >                 </f:facet>
> > >               </tr:navigationPane>
> > >             </f:facet>
> > >             <f:facet name="navigation2">
> > >               <tr:navigationPane hint="bar" var="buttonItem"
> > > value="#{menuModel_main.model}"
> > >                           level="1" inlineStyle="text-align: left;">
> > >                 <f:facet name="nodeStamp">
> > >                   <tr:commandNavigationItem text="#{buttonItem.label}"
> > >                                       accessKey="#{
> > > buttonItem.accessKey }"
> > >                                       action="#{buttonItem.getOutcome
> > > }"
> > >
> > > useWindow="#{menu_enrollment.useWindow}"
> > >
> > > windowWidth="#{menu_enrollment.windowWidth}"
> > >
> > > windowHeight="#{menu_enrollment.windowHeight}"
> > >                                       icon="#{buttonItem.icon}"/>
> > >                 </f:facet>
> > >               </tr:navigationPane>
> > >             </f:facet>
> > >
> > > However, what I am getting is the navigationGlobal and navigation1
> > > items getting displayed correctly but in the menu bar where navigation2 is,
> > > I am seeing the navigationGlobal and navigation1 items as menu buttons and
> > > not the sub menu items.
> > >
> > > Thanks for any help in advance,
> > >
> > > Richard
> > >
> > >
> >
> >
>

Re: [Trinidad] Is the the "level" attribute in Trinidad equivalent to the "startDepth" attribute in ADF Faces?

Posted by Richard Yee <ri...@gmail.com>.
Matt,
Thanks for your reply. Are you also using XmlMenuModel with Trinidad or do
you have the menus configured in managed beans in faces-config.xml.

-Richard


On 1/2/08, Matt Cooper <ma...@gmail.com> wrote:
>
> Hi Richard,
>
> I believe the answer is that startDepth and level are almost the same.
> There is one subtle difference.  The difference is that in 10.1.3 ADF
> Faces, the top level of the tree was spread out onto multiple areas based
> upon the commandMenuItem's type attribute.
>
> In 10.1.3 ADF Faces, I think it worked this way:  the top-most set of
> links/buttons are those commandMenuItems using startDepth="0" and
> type="global", the primary tabs were startDepth="0" and type != "global"
> secondary tabs were those using startDepth="1".
>
> In Trinidad, type is irrelevant and the tree is allocated exactly to the
> level (aka depth) in the MenuModel tree; to get something to appear in the
> top-most area, you'd just use level 0, for primary tabs, use level="1", for
> secondary tabs, use level="2".
>
> Regards,
> Matt
>
> On Jan 2, 2008 11:34 AM, Richard Yee <ri...@gmail.com> wrote:
>
> > I'm porting an application from the old ADF Faces to Trinidad. In ADF
> > Faces, I have this in a .jspx page inside an af:panelPageHeader element:
> >             <f:facet name="menuGlobal">
> >               <af:menuButtons var="menu1Item"
> > value="#{menuModel_main.model}"
> >                               startDepth="0"
> >                               inlineStyle="padding:0em 0em 0.5em">
> >                 <f:facet name="nodeStamp">
> >                   <af:commandMenuItem text="#{menu1Item.label}"
> >                                       accessKey="#{menu1Item.accessKey}"
> >                                       action="#{menu1Item.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{ menu1Item.icon}"
> >                                       rendered="#{menu1Item.type ==
> > 'global'}"/>
> >                 </f:facet>
> >               </af:menuButtons>
> >             </f:facet>
> >             <f:facet name="menu1">
> >               <af:menuTabs var="menu1Item"
> > value="#{menuModel_main.model}"
> >                            startDepth="0" inlineStyle="text-align:
> > left;">
> >                 <f:facet name="nodeStamp">
> >                   <af:commandMenuItem text="#{menu1Item.label}"
> >                                       accessKey="#{menu1Item.accessKey}"
> >                                       action="#{menu1Item.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{menu1Item.icon}"
> >                                       rendered="#{ menu1Item.type ==
> > 'default'}"/>
> >                 </f:facet>
> >               </af:menuTabs>
> >             </f:facet>
> >           <f:facet name="menu2">
> >               <af:menuBar var="menu1Item"
> > value="#{menuModel_main.model}"
> >                           startDepth="1" inlineStyle="text-align:
> > left;">
> >                 <f:facet name="nodeStamp">
> >                   <af:commandMenuItem text="#{menu1Item.label}"
> >                                       accessKey="#{menu1Item.accessKey}"
> >                                       action="#{menu1Item.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{menu1Item.icon}"/>
> >                 </f:facet>
> >               </af:menuBar>
> >             </f:facet>
> >
> > in my converted page, I have
> >             <f:facet name="navigationGlobal">
> >               <tr:navigationPane hint="buttons" var="menu1Item"
> > value="#{menuModel_main.model}"
> >                               level="0"
> >                               inlineStyle="padding:0em 0em 0.5em">
> >                 <f:facet name="nodeStamp">
> >                   <tr:commandNavigationItem text="#{menu1Item.label }"
> >                                       accessKey="#{menu1Item.accessKey}"
> >                                       action="#{menu1Item.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{ menu1Item.icon}"
> >                                       rendered="#{menu1Item.type ==
> > 'global'}"/>
> >                 </f:facet>
> >               </tr:navigationPane>
> >             </f:facet>
> >             <f:facet name="navigation1">
> >               <tr:navigationPane hint="tabs" var="tabItem"
> > value="#{menuModel_main.model}"
> >                            level="0" inlineStyle="text-align: left;">
> >                 <f:facet name="nodeStamp">
> >                   <tr:commandNavigationItem text="#{tabItem.label}"
> >                                       accessKey="#{tabItem.accessKey }"
> >                                       action="#{tabItem.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{tabItem.icon}"
> >                                       rendered="#{ tabItem.type ==
> > 'default'}"/>
> >                 </f:facet>
> >               </tr:navigationPane>
> >             </f:facet>
> >             <f:facet name="navigation2">
> >               <tr:navigationPane hint="bar" var="buttonItem"
> > value="#{menuModel_main.model}"
> >                           level="1" inlineStyle="text-align: left;">
> >                 <f:facet name="nodeStamp">
> >                   <tr:commandNavigationItem text="#{buttonItem.label}"
> >                                       accessKey="#{buttonItem.accessKey}"
> >                                       action="#{buttonItem.getOutcome}"
> >
> > useWindow="#{menu_enrollment.useWindow}"
> >
> > windowWidth="#{menu_enrollment.windowWidth}"
> >
> > windowHeight="#{menu_enrollment.windowHeight}"
> >                                       icon="#{buttonItem.icon}"/>
> >                 </f:facet>
> >               </tr:navigationPane>
> >             </f:facet>
> >
> > However, what I am getting is the navigationGlobal and navigation1 items
> > getting displayed correctly but in the menu bar where navigation2 is, I am
> > seeing the navigationGlobal and navigation1 items as menu buttons and not
> > the sub menu items.
> >
> > Thanks for any help in advance,
> >
> > Richard
> >
> >
>
>

Re: [Trinidad] Is the the "level" attribute in Trinidad equivalent to the "startDepth" attribute in ADF Faces?

Posted by Matt Cooper <ma...@gmail.com>.
Hi Richard,

I believe the answer is that startDepth and level are almost the same.
There is one subtle difference.  The difference is that in 10.1.3 ADF Faces,
the top level of the tree was spread out onto multiple areas based upon the
commandMenuItem's type attribute.

In 10.1.3 ADF Faces, I think it worked this way:  the top-most set of
links/buttons are those commandMenuItems using startDepth="0" and
type="global", the primary tabs were startDepth="0" and type != "global"
secondary tabs were those using startDepth="1".

In Trinidad, type is irrelevant and the tree is allocated exactly to the
level (aka depth) in the MenuModel tree; to get something to appear in the
top-most area, you'd just use level 0, for primary tabs, use level="1", for
secondary tabs, use level="2".

Regards,
Matt

On Jan 2, 2008 11:34 AM, Richard Yee <ri...@gmail.com> wrote:

> I'm porting an application from the old ADF Faces to Trinidad. In ADF
> Faces, I have this in a .jspx page inside an af:panelPageHeader element:
>             <f:facet name="menuGlobal">
>               <af:menuButtons var="menu1Item"
> value="#{menuModel_main.model}"
>                               startDepth="0"
>                               inlineStyle="padding:0em 0em 0.5em">
>                 <f:facet name="nodeStamp">
>                   <af:commandMenuItem text="#{menu1Item.label}"
>                                       accessKey="#{menu1Item.accessKey}"
>                                       action="#{menu1Item.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{ menu1Item.icon}"
>                                       rendered="#{menu1Item.type ==
> 'global'}"/>
>                 </f:facet>
>               </af:menuButtons>
>             </f:facet>
>             <f:facet name="menu1">
>               <af:menuTabs var="menu1Item" value="#{menuModel_main.model}"
>                            startDepth="0" inlineStyle="text-align: left;">
>
>                 <f:facet name="nodeStamp">
>                   <af:commandMenuItem text="#{menu1Item.label}"
>                                       accessKey="#{menu1Item.accessKey }"
>                                       action="#{menu1Item.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{menu1Item.icon}"
>                                       rendered="#{ menu1Item.type ==
> 'default'}"/>
>                 </f:facet>
>               </af:menuTabs>
>             </f:facet>
>           <f:facet name="menu2">
>               <af:menuBar var="menu1Item" value="#{menuModel_main.model}"
>                           startDepth="1" inlineStyle="text-align: left;">
>                 <f:facet name="nodeStamp">
>                   <af:commandMenuItem text="#{menu1Item.label}"
>                                       accessKey="#{menu1Item.accessKey }"
>                                       action="#{menu1Item.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{menu1Item.icon}"/>
>                 </f:facet>
>               </af:menuBar>
>             </f:facet>
>
> in my converted page, I have
>             <f:facet name="navigationGlobal">
>               <tr:navigationPane hint="buttons" var="menu1Item"
> value="#{menuModel_main.model}"
>                               level="0"
>                               inlineStyle="padding:0em 0em 0.5em">
>                 <f:facet name="nodeStamp">
>                   <tr:commandNavigationItem text="#{menu1Item.label }"
>                                       accessKey="#{menu1Item.accessKey}"
>                                       action="#{menu1Item.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{ menu1Item.icon}"
>                                       rendered="#{menu1Item.type ==
> 'global'}"/>
>                 </f:facet>
>               </tr:navigationPane>
>             </f:facet>
>             <f:facet name="navigation1">
>               <tr:navigationPane hint="tabs" var="tabItem"
> value="#{menuModel_main.model}"
>                            level="0" inlineStyle="text-align: left;">
>                 <f:facet name="nodeStamp">
>                   <tr:commandNavigationItem text="#{tabItem.label}"
>                                       accessKey="#{tabItem.accessKey }"
>                                       action="#{tabItem.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{tabItem.icon}"
>                                       rendered="#{ tabItem.type ==
> 'default'}"/>
>                 </f:facet>
>               </tr:navigationPane>
>             </f:facet>
>             <f:facet name="navigation2">
>               <tr:navigationPane hint="bar" var="buttonItem"
> value="#{menuModel_main.model}"
>                           level="1" inlineStyle="text-align: left;">
>                 <f:facet name="nodeStamp">
>                   <tr:commandNavigationItem text="#{buttonItem.label}"
>                                       accessKey="#{buttonItem.accessKey }"
>                                       action="#{buttonItem.getOutcome}"
>
> useWindow="#{menu_enrollment.useWindow}"
>
> windowWidth="#{menu_enrollment.windowWidth}"
>
> windowHeight="#{menu_enrollment.windowHeight}"
>                                       icon="#{buttonItem.icon}"/>
>                 </f:facet>
>               </tr:navigationPane>
>             </f:facet>
>
> However, what I am getting is the navigationGlobal and navigation1 items
> getting displayed correctly but in the menu bar where navigation2 is, I am
> seeing the navigationGlobal and navigation1 items as menu buttons and not
> the sub menu items.
>
> Thanks for any help in advance,
>
> Richard
>
>