Created
September 19, 2012 08:04
-
-
Save bleathem/3748312 to your computer and use it in GitHub Desktop.
tab component with nested a4j:repeat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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