Attributes from pe:layoutPane have no effect
I decided to use pe:layout instead of p:layout because i was having problems re-sizing a p:layoutUnit with an iframe.
After adding gson-2.2.4.jar to the <Designer>\webapps\ivy\WEB-INF\lib folder it started to work. But the attributes size, initClose, closable, minSize, maxSize have no effect.
<pe:layout fullPage="true" >
<pe:layoutPane size="800" initClosed="true" closable="true" position="north">
<h3>Test</h3>
</pe:layoutPane>
<pe:layoutPane position="center">
<h:form id="form">
<h:panelGrid columns="2" >
<f:facet name="header">
<p:messages></p:messages>
</f:facet>
<p:outputLabel for="description" value="Description"/>
<p:inputText id="description" value=""></p:inputText>
<p:outputLabel for="expire" value="Expire"/>
<p:calendar id="expire" value="" pattern="dd.MM.yyyy HH:mm" size="16">
<f:convertDateTime pattern="dd.MM.yyyy HH:mm" />
</p:calendar>
<p:commandButton actionListener="#{logic.close}" value="Proceed" update="form" icon="ui-icon-check" />
</h:panelGrid>
</h:form>
</pe:layoutPane>
<pe:layoutPane position="east" size="50%" closable="true">
<iframe src="http://answers.axonivy.com/" height="100%" width = "100%" />
</pe:layoutPane>
</pe:layout>