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

时间:2010-09-04 08:06:22

标签: header jqgrid wrapping

我在我的页面中使用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,问题仍然存在。

2 个答案:

答案 0 :(得分: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 :(得分: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并且确实有效。我认为它会像我一样帮助那些人。 :)