可以在 jqGrid 中设置 filterToolbar 的样式吗?

发布于 2024-12-08 14:15:13 字数 476 浏览 0 评论 0原文

我正在使用 jqGrid,想知道是否可以将 filterToolbar 的背景与网格的其余部分分开设置样式。

我已经尝试过:

var $search_toolbar = $("tr.ui-search-toolbar", $("#list")[0].grid.hDiv);
$search_toolbar.css('height', '50');
$search_toolbar.css('background-color', 'Red');

高度已设置,但背景颜色似乎被子 TH 元素覆盖。

然后我尝试创建一种样式:

tr.ui-search-toolbar th{
    height:30px;
    background-color:Black;
    background-image:none;
}

我确信我错过了一些明显的东西,我只是看不到它是什么。

I am using jqGrid and want to know if it is possible to style the background of the filterToolbar separately from the rest of the grid.

I've tried:

var $search_toolbar = $("tr.ui-search-toolbar", $("#list")[0].grid.hDiv);
$search_toolbar.css('height', '50');
$search_toolbar.css('background-color', 'Red');

The height get set, but the background-color appears to be overridden by child TH elements.

I then tried creating a style:

tr.ui-search-toolbar th{
    height:30px;
    background-color:Black;
    background-image:none;
}

I'm sure I'm missing something obvious, I just can't see what it is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏日落 2024-12-15 14:15:13

您可以使用类似以下内容,

.ui-jqgrid table.ui-jqgrid-htable th.ui-th-column input,
.ui-jqgrid table.ui-jqgrid-htable th.ui-th-column select {
    background-color: red
}

请参阅演示

You can use something like the following

.ui-jqgrid table.ui-jqgrid-htable th.ui-th-column input,
.ui-jqgrid table.ui-jqgrid-htable th.ui-th-column select {
    background-color: red
}

see the demo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文