How to implement wordwrap on jqGrid which works on IE7, IE8 and FF(如何在适用于 IE7、IE8 和 FF 的 jqGrid 上实现自动换行)
问题描述
如何在适用于 IE7、IE8 和 FF 的 jqGrid 上实现自动换行,同时还可以调整列大小(网格正确对齐).
How to implement wordwrap on jqGrid which works on IE7, IE8 and FF, while also having column-resize work (grid aligns correctly).
尝试使用特定宽度的 div(基于初始 TH 宽度)对每个 td 上的内容进行内包装,但 colresize 不适用于我插入的 div.jqGrid 会计算调整后的 TH 和相邻 TH 的宽度.
Tried to innerwrap content on each td with a div of specific width (based on initial TH width), but colresize will not work on the divs I've inserted. jqGrid calculates the widths of the resized TH and adjacent THs though.
有没有更好的解决方案可以避免所有 JavaScript 'hacks'?
Is there a better solution which will avoid all the JavaScript 'hacks'?
推荐答案
jqGrid Text/Word Wrapping 解释了如何做到这一点,使用以下 CSS:
jqGrid Text/Word Wrapping explains how to do this, using the following CSS:
.ui-jqgrid tr.jqgrow td {
white-space: normal !important;
height:auto;
vertical-align:text-top;
padding-top:2px;
}
这篇关于如何在适用于 IE7、IE8 和 FF 的 jqGrid 上实现自动换行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在适用于 IE7、IE8 和 FF 的 jqGrid 上实现自动换行
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Flexslider 箭头未正确显示 2022-01-01