panelGrid - css border attribute being ignored
I have a panelGrid as follows:
<h:panelGrid id="datasetManagementGrid" columns="1" styleClass="pageContentArea" >
the css is as follows:
.pageContentArea { width:568; border:1px solid #cdcdcd; }
The html is rendered as such:
<table id="_id0:datasetManagementGrid" border="0" class="pageContentArea">
The border attribute is overriding my style. Why is that being put in there, and how do I get it not to do that?
Ray

