Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我t:datatable在我的 JSF 应用程序中使用。
t:datatable
我可以根据条件更改特定行的CSS吗?条件意味着使用数据表变量渲染。是否可以?我正在使用 jsf 1.2(尽管除了我之外的所有人都升级到了 jsf 2.0 :/)
尝试使用rowStyleClass或rowStyle
rowStyleClass
rowStyle
rowStyleClass="css 样式类" rowStyle="内联css样式"
rowStyleClass="css 样式类"
rowStyle="内联css样式"
像这样
<t:datatable id="myID" var="data" value="#{myBean.data}" rowStyleClass="#{data.someproperty eq 'someStringValue' ? 'someClass' : 'otherClass'}">