在IE上包装jqGrid列标题的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在IE上包装jqGrid列标题的问题相关的知识,希望对你有一定的参考价值。
我在我的页面中使用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,问题依然存在。
答案
尝试另外使用
.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中可以找到的问题的更多信息和更多演示。
另一答案
这应该工作:
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并且确实有效。我认为它会像我一样帮助那些人。 :)
以上是关于在IE上包装jqGrid列标题的问题的主要内容,如果未能解决你的问题,请参考以下文章
如何在适用于 IE7、IE8 和 FF 的 jqGrid 上实现自动换行
ASP.net MVC 代码片段问题中的 Jqgrid 实现