我已经rowStyle
根据条件给予。此数据表还具有选择(复选框)选项。
rowStyleClass="#{condt ? myStyle : null}"
我想保留在行上应用的自定义样式,即使它被选中(即复选框被选中)。By default, when the row is selected it is highlighted in yellow irrespective of the style applied.
CSS:
.ui-datatable .ui-state-highlight {
background-image: none;
background-color: yellow !important;
}
.myStyle {
background-image: none;
background-color: red !important;
}
rowStyle
即使选中复选框,我也可以保留已应用的内容吗?