ExtJS 3 - 始终在 GridPanel 列标题中显示菜单图标?

发布于 2024-12-11 22:09:05 字数 400 浏览 0 评论 0原文

我需要始终在 GridPanel 的列标题中显示菜单图标。请参阅附图。我跟踪了 css 类,并看到 标签在悬停时被分配了 x-grid3-hd-btnx-grid3-hd-btn 类使用背景图像 grid3-hd-btn.gif 来显示我想要的下拉箭头,但我没有精通 css 足以弄清楚如何始终显示它。

在此处输入图像描述

GridPanel 类 api 中似乎没有挂钩来始终显示此内容,希望有。另请注意,我只想显示箭头图标,我不希望列标题更改颜色等。

有人对此有任何指导吗?

谢谢!

约翰

I have a requirement to always show the menu icon in a a GridPanel's column header. See attached image. I've tracked down the css class and see the <td /> tag is assigned the x-grid3-hd-btn on hover. The x-grid3-hd-btn class uses a background image, grid3-hd-btn.gif to display the drop-down arrow I want, but I'm not css savvy enough to figure out how to always show it.

enter image description here

There doesn't seem to be a hook in the GridPanel class api's to always display this, wish there was. Also, note that I only want the arrow icon to show, I don't want the column header to change color, etc.

Does anyone have any guidance on this?

Thanks!

John

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

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

发布评论

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

评论(2

冰雪梦之恋 2024-12-18 22:09:05

将其添加到您的样式表中,这将覆盖默认的 extjs 主题样式

/**
 * EXTJS Grid-3 Always visible header buttons
 */

.x-grid3-hd-btn {
display: block !important;
height: 22px !important;
}

.x-grid3-hd {
cursor: pointer;
}

Add this to your stylesheet, this overwrites default extjs theme styles

/**
 * EXTJS Grid-3 Always visible header buttons
 */

.x-grid3-hd-btn {
display: block !important;
height: 22px !important;
}

.x-grid3-hd {
cursor: pointer;
}
旧人 2024-12-18 22:09:05

您是否尝试过替换 ext-all.css 文件中的 css 类背景图像?

原文:

.x-grid3-header{
    background-color:#f9f9f9;
    background-image:url(../images/default/grid/grid3-hrow.gif);
}

替换为:

.x-grid3-header{
    background-color:#f9f9f9;
    background-image:url(../images/default/grid/grid3-hrow-over.gif);
}

告诉我是否是这样......

have you tried replacing the css class background image in your ext-all.css file?

original:

.x-grid3-header{
    background-color:#f9f9f9;
    background-image:url(../images/default/grid/grid3-hrow.gif);
}

replace to :

.x-grid3-header{
    background-color:#f9f9f9;
    background-image:url(../images/default/grid/grid3-hrow-over.gif);
}

tell me if that did it...

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