在选择节点时的treetable中,行变为灰色。
如何定制素数以使其在选中时保持白色?
谢谢!
(我从Primefaces展示https://www.primefaces.org/showcase/ui/data/treetable/selection.xhtml获得了这个截图)
答案 0 :(得分:1)
您需要覆盖它使用的样式类。
在xhtml文件中添加以下代码
<style type="text/css">
/* this is to set proper font size */
.ui-widget,.ui-widget .ui-widget {
font-size: 90% !important;
}
/* To change background color when selectedis-->*/
.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight
{
background-color: green;
}
</style>
试试这个,它应该有效。
如何查找:
在树上使用firefox浏览器right click
,然后点击"Inspect Element(Q)"
。它将显示它正在使用的样式。它向我展示了上面的标签,所以我只是覆盖它。
您需要了解CSS
。