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 上实现自动换行
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01