2 Replies Latest reply on Sep 26, 2011 8:50 PM by hantsy

    A Facelets problem

    hantsy

      I created composite component.

       

       

      <cc:interface>
        .....     
      </cc:interface>
      
      <cc:implementation>
           <ui:insert name="actionLinks"/>
       <cc:implementation>
      

       

      When I applied in my page.

       

       

      <ui:define name="toolbar">
              <m:toolPanel ......>
                  <ui:define name="actionLinks">
                      <h:link outcome="/addressee/addresseeEdit" styleClass="ui-icon-new"
                          value="#{messages['Links.Addressee.New']}"></h:link>
                  </ui:define>
      
      ......
      

       

       

      The actionLinks does not display, where is wrong?

       

      Any help is appreciated.