is there any way i can set the color of the text in the table data in jsf? i want to have different colors for #{_component.displayName} depending on the return value of a backing bean method.

    <h:dataTable styleClass="mytable" value="#{cart.items}" var="_component"> 

        <h:column>
            <f:facet name="header"><h3>Item</h3></f:facet>
            #{_component.displayName}
        </h:column>

    </h:dataTable>  

Thank you

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you want to set the style class on the <td> element, you've to use columnClasses attribute of the <h:dataTable>:

<h:dataTable columnClasses="col1,col2,col3">

It accepts a commaseparated string of CSS class names which are to be applied on the individual columns in sequence. You can even let it refer to a bean property which autopopulates the desired string:

<h:dataTable columnClasses="#{bean.columnClasses}">

Each styleclass will however be applied on the entire column. If you'd like to style an individual cell independently, you'd better to wrap it in an <h:outputText>:

<h:outputText value="#{_component.displayName}" styleClass="#{_component.styleClass}" />

or

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass}" />

or

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass(component)}" />

Or if the cell covers multiple components, wrap them inside a <h:panelGroup> instead and set the styleClass on it.

link|improve this answer
thanks so much. – glasspill Nov 26 '11 at 15:19
You're welcome. – BalusC Nov 26 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.