You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Dudu <ed...@yahoo.com.br> on 2006/06/05 22:05:16 UTC

Strange jscookMenu redening behavior in jspx pages... (a possible bug? I think no)

At first, im using a jspx page in jdeveloper, and the latest stable myfaces
libs...

If i code a page like below, nothing appear in the menu:
........
<afh:body id="body">
            <x:jscookMenu layout="hbr" theme="ThemeOffice"
                          binding="#{backing_sag_index.jscookMenu1}"
                          id="jscookMenu1">
              <x:navigationMenuItems
binding="#{backing_sag_index.navigationMenuItems1}"
                                     id="navigationMenuItems1"
                                     value="#{backing_sag_index.menu}"/>
            </x:jscookMenu>
        <af:panelPage id="panelPage1">
          <f:facet name="menu2"></f:facet>
          <f:facet name="infoUser"></f:facet>
          <f:facet name="messages"></f:facet>
          <f:facet name="search"></f:facet>
          <f:facet name="actions"></f:facet>
          <f:facet name="brandingAppContextual">

      ..........

but when I change to this, the menu works fine:

<afh:body id="body">
        <af:panelPage id="panelPage1">
          <f:facet name="menu2">
            <x:jscookMenu layout="hbr" theme="ThemeOffice"
                          binding="#{backing_sag_index.jscookMenu1}"
                          id="jscookMenu1">
              <x:navigationMenuItems
binding="#{backing_sag_index.navigationMenuItems1}"
                                     id="navigationMenuItems1"
                                     value="#{backing_sag_index.menu}"/>
            </x:jscookMenu>

          </f:facet>
          <f:facet name="infoUser"></f:facet>
          <f:facet name="messages"></f:facet>
          <f:facet name="search"></f:facet>
          <f:facet name="actions"></f:facet>
          <f:facet name="brandingAppContextual">

      ..........