JqG​​rid - 仅限冻结列的标题颜色更改

时间:2014-12-23 09:43:43

标签: jqgrid

我们可以更改仅冻结列标题的背景颜色和字体颜色。 我通过在ui.jqgrid.css中更改以下内容来尝试此操作。

.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0;padding: 0; overflow-x: hidden; border-left: 0 none !important; border-top : 0 none !important; border-right : 0 none !important;background-color:#f0dcdd !important;color:Black;} 

这并未改变颜色。

1 个答案:

答案 0 :(得分:1)

您可以使用CSS raile,如下所示

.ui-jqgrid .frozen-div .ui-th-column { background: #f0dcdd; color: black; }

请参阅the demo,其中显示的结果如下图所示

enter image description here