Example Form
Description
Nearly empty panel

Balancer

Balancer adjusts height of its inner elements. Needs only width passed as an attribute.

<j:row>
	<j:balancer width="12">
		<j:slot width="6">
			<h:form>
				<p:panel header="Example Form" styleClass="jeeslPanel jeesl-panel">
					<j:inputGrid>
						<p:outputLabel value="regular input"/>
		          		<p:inputText autocomplete="off"/>
		          		
		          		<p:outputLabel value="textarea"/>
		          		<p:inputTextarea/>
					</j:inputGrid>
				</p:panel>
			</h:form>
		</j:slot>
		<j:slot width="6">
			<p:panel header="Description" styleClass="jeeslPanel jeesl-panel">
				<j:inputGrid>
					<h:panelGroup styleClass="ui-outputtext"><h:outputText value="Nearly empty panel"/></h:panelGroup>
				</j:inputGrid>
			</p:panel>
		</j:slot>
	</j:balancer>
</j:row>