Skip to content

Instantly share code, notes, and snippets.

@bleathem
Created September 19, 2012 08:04
Show Gist options
  • Save bleathem/3748312 to your computer and use it in GitHub Desktop.
Save bleathem/3748312 to your computer and use it in GitHub Desktop.
tab component with nested a4j:repeat
<h:form id="form">
<rich:tabPanel id="tabPanel">
<rich:tab id="manual_1" title="Manual Tab 1">
Manual Tab 1
</rich:tab>
<a4j:repeat value="#{richBean.names}" var="name" id="repeat" iterationStatusVar="var">
<rich:tab title="#{name}" id="dynamic">
#{name} content
</rich:tab>
</a4j:repeat>
</rich:tabPanel>
</h:form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment