I have a <p:panelGrid>
as follows:
<p:panelGrid style="width: 50px">
<p:row>
<p:column colspan="2">
<p:inputTextarea/>
</p:column>
</p:row>
</p:panelGrid>
I tried to set the width of the panel grid to 50px by setting the CSS width
property, however it didn't become 50px wide.
How can I set the width of the panel grid to 50px?