gpt4 book ai didi

text - jqgrid长文本换行

转载 作者:行者123 更新时间:2023-12-04 01:24:12 26 4
gpt4 key购买 nike

在 jqgrid 中,我们有从 DB 获取的长文本,但是在 JQgrid 中显示时需要换行,有没有办法换行长文本(没有空格)?我们只有 110px 可用于收款人姓名字段,因为我们有多个列需要显示。我们的代码就像

{name:"firstPayeeName",index:"firstPayeeName", width:"110px", align:"left", sorttype:"string"},

如果有,请提供解决方案。提前致谢。

最佳答案

如果您需要显示的测试有 没有空格或其他空白 你不能使用描述的 CSS 样式 herehere .

我建议您使用另一种 CSS 样式:

<style type="text/css">
.ui-jqgrid tr.jqgrow td {
word-wrap: break-word; /* IE 5.5+ and CSS3 */
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
overflow: hidden;
height: auto;
vertical-align: middle;
padding-top: 3px;
padding-bottom: 3px
}
</style>

您如何从 the demo 看到文本“testtesttesttesttesttesttesttest”将显示如下:

enter image description here

关于text - jqgrid长文本换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6510144/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com