i try to change header image of the Primefaces Datatable. Bu t i'm not able to find out exact css class for Datatable header. style class as follows
.thresholdTableClass.ui-datatable .ui-datatable-header {
border: 1px solid #bed6f8;
background: #c6deff url(../img/header-panel.png) repeat-x !important;
font-weight: bold;
color: #FFFFFF;
}
my datatable is
<p:dataTable id="thresholdPanel" var="threshold"
value="#{target.thresholdVOList}" editable="true"
rowIndexVar="thresholdRowCntr" styleClass="thresholdTableClass">
</p:dataTable>
but above values are not effecting my datatable header.
I have tried to to find out the styleclass, but what i found is
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: url("/EdgeApp/javax.faces.resource/images/default.png.xhtml?ln=primefaces-bluesky") repeat-x scroll 0 0 #C6DEFF;
border: 1px solid #BED6F8;
color: #000000;
font-weight: bold;
}
please help.