So I have:

<t:panelGrid align="center" width="95%">
        <tr:treeTable id="treeTable" rowBandingInterval="1" width="100%"
var="model" value="#{CONTROLLER.tree}">
                <f:facet name="nodeStamp">
                        <tr:column />
                </f:facet>
        
                <tr:column headerText="#{msgs.tableheader_name}">
                        <tr:outputText value="#{model.name}" />
                </tr:column>
        
                <tr:column headerText="#{msgs.tableheader_address}">
                        <tr:outputText value="#{model.facilityDTO.addr1}" />
                </tr:column>
        </tr:treeTable>
</panelGrid>

and I have this in my css:

.AFTableCellDataBackgroundColor:alias {
        background-color: red !important;
}
.AFTableCellDataBandedBackgroundColor:alias {
        background-color: green !important;
}

yet I am not seeing anything reflected in the page rendering.  Is there
short answer to what the heck I'm doing wrong?  Let me know if you need any
other information if you can help and thanks in advance.
-- 
View this message in context: 
http://www.nabble.com/rowBandingInterval-not-working-with-Trinidad-treeTable-tf4264259.html#a12135913
Sent from the MyFaces - Users mailing list archive at Nabble.com.

Reply via email to