Primefaces数据表着色行

时间:2015-09-30 07:51:48

标签: jsf primefaces

closedItem 返回Boolean。 我将其添加到 dataTable

rowStyleClass="#{(res.closedItem) eq true ? 'Closed' : null}"

我的CSS

<style type="text/css">
    .Closed
    {
        background-color: #6CE26C !important;
        background-image: none !important;
        color: #000000 !important;
    }
</style>

但它不起作用,请帮助。

2 个答案:

答案 0 :(得分:2)

尝试:

rowStyleClass="#{res.closedItem ? 'Closed' : ''}"

答案 1 :(得分:0)

也许你有可能使用PrimeFaces框架?

http://www.primefaces.org/showcase/ui/data/datatable/rowColor.xhtml

看看它,有一些非常好的附加功能