1 Reply Latest reply on Jul 13, 2011 8:16 AM by glasfeu

    RichFaces 4.0 TabPanel how to bind?

    rsoika

      Hi,

       

      I can not figure out how to bind a rich:tabPanel to my backing bean when using rich:tabPanel in RichFaces 4.0.

      The class HtmlTabPanel seems no longer be availabe. So I can bind the panel to my getter and setter methods.

      Can anybody provide a example how to implement the backing bean?

       

      Thnaks for help

      Ralph

        • 1. Re: RichFaces 4.0 TabPanel how to bind?
          glasfeu

          Bonjour,

           

          The UI component is UITabPanel so in your backing bean you will have :

           

           

          private UITabPanel tabPanel;

           

          public UITabPanel getTabPanel() {

              return tabPanel;

          }

           

          public void setTabPanel(UITabPanel tabPanel) {

              this.tabPanel = tabPanel;

          }

           

          Didier.