Slickgrid - IE7 中的自动换行列标题

发布于 2025-01-02 01:48:17 字数 88 浏览 0 评论 0原文

有没有办法在 IE7 中自动换行 Slickgrid 列标题?我有大约20+ 网格中的列 - 几乎所有列都有 2 个或更多单词。

感谢您的帮助!

is there a way to word-wrap Slickgrid column headers in IE7? I have about 20+
columns in the grid - and almost all columns have 2 or more words.

Thanks for the help!

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

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

发布评论

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

评论(2

陪我终i 2025-01-09 01:48:17

我通过编辑 2 个 css 标签解决了这个问题:

slick-default-theme.css 中:

.slick-header-columns {
    white-space: pre !important;
    height: 45px;
}

这里的 height 可以根据您的需要进行调整。这对于显示 3 行来说很好。

slick.grid.css 中,将以下标记上的 height 设置更改为 100%

.slick-header-column.ui-state-default {
    ...
    height: 100%;
    ...
}

I solved this by editing 2 css tags:

In slick-default-theme.css:

.slick-header-columns {
    white-space: pre !important;
    height: 45px;
}

The height here is adjustable to your needs. This was good to display 3 lines.

In slick.grid.css, change the height settings on the below tag to 100%:

.slick-header-column.ui-state-default {
    ...
    height: 100%;
    ...
}
千秋岁 2025-01-09 01:48:17

作品完美!

.slick-header-columns {
    white-space: pre !important;
    height:100%;
}

如果创建了两个网格,并且只有其中一个具有长标题文本。

Works perfect!!!

.slick-header-columns {
    white-space: pre !important;
    height:100%;
}

If two grids are created and only one of them has got long header text.

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