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>
但它不起作用,请帮助。
答案 0 :(得分:2)
尝试:
rowStyleClass="#{res.closedItem ? 'Closed' : ''}"
答案 1 :(得分:0)
也许你有可能使用PrimeFaces框架?
http://www.primefaces.org/showcase/ui/data/datatable/rowColor.xhtml
看看它,有一些非常好的附加功能