在IE上包装jqGrid列标题的问题

问题描述 投票:6回答:2

我在我的页面中使用jqGrid,我修改了ui.jqgrid.css文件以包装列标题,如下所示:

.ui-jqgrid tr.jqgrow td {
    white-space: normal !important;
}

.ui-th-column,.ui-jqgrid .ui-jqgrid-htable th.ui-th-column{
    white-space:normal;
}

它适用于所有浏览器,但IE!我试过IE7和IE8,问题依然存在。

header jqgrid wrapping
2个回答
22
投票

尝试另外使用

.ui-th-div-ie {
    white-space:normal !important;
    height:auto !important;
}

更新:在我看来,不是所有这些风格,最好使用以下一个:

th.ui-th-column div{
    white-space:normal !important;
    height:auto !important;
    padding:2px;
}

它似乎在所有浏览器中都非常好用。查看示例here

更新2:有关the answer中可以找到的问题的更多信息和更多演示。


1
投票

这应该工作:

th.ui-th-column div{
    height:auto!important;
}

.ui-jqgrid .ui-jqgrid-htable th div {
    white-space:normal !important;
    height:auto!important;
    padding:2px;
}

我试过Oleg的回答。但是,虽然有包装,但高度没有增加以适应内容。所以我修改了上面的css并且确实有效。我认为它会像我一样帮助那些人。 :)

© www.soinside.com 2019 - 2024. All rights reserved.