Greetings, I'm trying to implement my custom TAB control. I'd like it to be based on new composite components feature of JSF 2.0:
<i:tabControl width="480" height="320" value="#{backingBean.someIterable}" var="tab" >
<i:tabItem href="#{tab.href}" caption="#{tab.caption}"/>
<i:tabControl/>
The problem is I don't know how to implement repeater for Composite component. How to get access to nested element?