<p:tabView styleClass="jeesl-tabs">
<p:tab title="h:panelGrid">
<h:panelGrid columns="2">
<p:outputLabel value="Label"/>
<h:outputText value="Text"/>
</h:panelGrid>
</p:tab>
<p:tab title="p:panelGrid">
<p:panelGrid columns="2">
<p:outputLabel value="Label"/>
<h:outputText value="Text"/>
</p:panelGrid>
</p:tab>
<p:tab title="j:inputGrid">
<j:inputGrid>
<p:outputLabel value="Label"/>
<h:panelGroup styleClass="ui-outputtext"><h:outputText value="Text"/></h:panelGroup>
</j:inputGrid>
</p:tab>
<p:tab title="p:dataTable">
<p:dataTable styleClass="jeesl-datatable"
var="t" value="#{stylePanelRepeatBean.types}">
<p:column headerText="Text">
<p:outputLabel value="#{t.code}"/>
</p:column>
<p:column headerText="URL">
<h:outputText value="#{t.name[localeCode].lang}"/>
</p:column>
</p:dataTable>
</p:tab>
<p:tab title="h:dataTable">
<h:dataTable var="t" value="#{stylePanelRepeatBean.types}" styleClass="jeesl-datatable">
<h:column><p:outputLabel value="#{t.code}"/></h:column>
<h:column><h:outputText value="#{t.name[localeCode].lang}"/></h:column>
</h:dataTable>
</p:tab>
<p:tab title="highlight">
<j:highlight resource="/jeesl/composition/function/prettyUrl.xhtml" from="8" to="8"/>
</p:tab>
</p:tabView>