Created
December 9, 2019 10:30
-
-
Save MrMikeFloyd/1e563959c1fe1eae0c0b4895ed26a9ff to your computer and use it in GitHub Desktop.
Example for creating a JSTL-loop-powered Tabpanel
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
<rich:tabPanel width="50px"> | |
<c:forEach items=#{_myTabs}" var="_myTab" varStatus="currPos"> | |
<rich:tab switchType="client" label="Tab ${currPos.index}"> | |
. | |
. | |
. | |
</c:forEach> | |
</rich:tabPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment