Text

TabView

...

<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="jeesl-panel">
		<p:panel styleClass="jeesl-panel" header="Jeesl Panel inside a Tab">
			<j:inputGrid>
	              <p:outputLabel value="Label"/>
	              <h:panelGroup styleClass="ui-outputtext"><h:outputText value="Text"/></h:panelGroup>
			</j:inputGrid>
		</p:panel>	
	</p:tab>
	<p:tab title="p:tabView">
		<p:tabView styleClass="jeesl-tabs">