First of all, let me give you some information. I'm developing a web application with this:
- Netbeans 7.2.1
- JSF-2 Mojarra 2.1.1
- Primefaces 3.4.2
- Chrome / Firefox
In one of the pages (actually, the index page) there is a panel (p:panel) that contains a data grid (p:dataGrid). Well, when the data grid has a few elements (more than two), the whole page renders in a very strange way. The best will be showing you a parcial screen shot.

As you can see, two scroll bars appear (horizontally and vertically). I would think is a code problem if it weren't because by just accesing the developer's tools of the browser the page re-renders and the scroll bars disappear. This is result:

Both Chrome and Firefox browser have the same behaviour. I don't have any idea how to face this problem. I don't even know what kind of information I can give you because I don't know if the problem it's in my code, it's a Primefaces bug or what. Have you guys faced any similar problem anytime? I would like any suggestion from you. Thanks in advance.
EDIT - This is a very simplified structure of the view:
<p:layoutUnit position="west" size="66%">
<p:layoutUnit position="center">
<h:inputHidden .../>
<h:inputHidden .../>
<p:panel style="height: 95%" styleClass="transparent">
<p:dataGrid ...>
<h:form>
<p:commandButton style="width: 100%" ...>
<f:setPropertyActionListener ... />
</p:commandButton>
</h:form>
</p:dataGrid>
</p:panel>
</p:layoutUnit>
<p:layoutUnit position="south" size="33%">
<p:panel style="height: 90%" styleClass="transparent">
</p:panel>
</p:layoutUnit>
</p:layoutUnit>
<p:layoutUnit position="center" size="33%">
<p:layoutUnit position="center">
<p:panel>
<p:panel id="map"/>
</p:panel>
</p:layoutUnit>
<p:layoutUnit position="south" size="46%">
<p:commandButton .../>
</p:layoutUnit>
</p:layoutUnit>
<!DOCTYPE html>. I've tried with Transitional doctype and the problem remains the same. I'll try to edit the question adding an SSCCE, althought simplify the code will be a bit complicated becauses it's completely based on templates. – Julio Jan 28 at 20:45<p:layout>? – BalusC Jan 28 at 20:46