1 Reply Latest reply on Feb 2, 2011 9:02 AM by topfan

    rich:panelMenuItem  external link

    topfan

      Hi everybody,

       

      in the code shown below, i need to make external link on every item:

       

      <rich:panelMenu id="panelMenu" >

                      <rich:panelMenuItem  label="First Item" status="waitStatus"/>        must be an external link to http://www.mysite.com

                      <rich:panelMenuItem  label="Second Item" status="waitStatus"/>    must be an external link to http://www.mysite_1.com

                      <rich:panelMenuItem  label="Third Item" status="waitStatus"/>        must be an external link to http://www.mysite_2.com

      </rich:panelMenu>

       

      How to make external link?

       

      Thanks.

       

       

      topfan

        • 1. rich:panelMenuItem  external link
          topfan

          Ok, i solved the problem:

           

           

           

          <rich:panelMenu id="panelMenu" >

                   <rich:panelMenuItem>

                   <h:outputLink value="http://www.mysite.com/"><h:outputText value="First Item" /></h:outputLink>

                   </rich:panelMenuItem>       

          ......................................................

          ......................................................

           

           

          </rich:panelMenu>