1

在树表中,当节点被选中时,行变为灰色。

如何自定义primefaces以在选择它们时保持白色?

谢谢!

(我从 Primefaces 展示中得到了这张截图https://www.primefaces.org/showcase/ui/data/treetable/selection.xhtml

在此处输入图像描述

4

1 回答 1

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>

试试这个,它应该可以工作。

如何找出:

right click在树上使用 firefox 浏览器并单击"Inspect Element(Q)"。它将显示它正在使用的样式。它向我展示了上面的标签,所以我只是覆盖它。

您需要了解的很少CSS

于 2013-07-18T13:15:11.633 回答