-
GridPanel 单元格自动换行
-
在定义列的时候
-
{
-
header : '序号',
-
dataIndex : 'ind',
-
renderer: function(value, meta, record) {
-
meta.attr = 'style="white-space:normal;"';
-
return value;
-
}
-
}
解决使用自动换行又会带来一个新的问题,那就是不需要换行的列在竖直方向上没有居中显示,而是靠上对齐
-
<style type="text/css">
-
.x-grid3-row td, .x-grid3-summary-row td {
-
line-height:13px;
-
vertical-align: middle;
-
padding-left:1px;
-
padding-right:1px;
-
-moz-user-select: none;
-
-khtml-user-select:none;
-
-webkit-user-select:ignore;
-
}
-
</style>
测试版本:GridPanel Ext js 版本3.4
原文链接:http://hi.baidu.com/java_wyb/item/ace5181e1490016771d5e8bc