This content has been marked as final.
Show 1 reply
-
1. Re: RichFaces 4.0 TabPanel how to bind?
glasfeu Jul 13, 2011 8:16 AM (in response to rsoika)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.