jsf - Primefaces Datatable coloring row -
closeditem returns boolean
. add datatable
rowstyleclass="#{(res.closeditem) eq true ? 'closed' : null}"
my css
<style type="text/css"> .closed { background-color: #6ce26c !important; background-image: none !important; color: #000000 !important; } </style>
but doesn't work, pls help.
try:
rowstyleclass="#{res.closeditem ? 'closed' : ''}"
Comments
Post a Comment