- 注册时间
- 2014-10-14
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 241
- 精华
- 0
- 帖子
- 61
|
felt 发表于 2015-7-14 13:57
把你相关的代码贴出来,一般设置allowCellWrap就可以折行显示
//网格属性设置
nGrid.set({
id: pId + "grid",
height: nHeight,
allowCellValid: true,
allowCellWrap: true,
borderStyle: "border:0", //不显示外表框
showModified: false, //修改不显示红点
showHGridLines: true, //显示横向表格线条
showVGridLines: true, //显示竖向表格线条
fitColumns: false, //固定列宽度
allowCellEdit: false, //允许编辑单元格
allowCellSelect: true, //允许选择单元格
virtualScroll: true, //显示虚拟滚动条
showPager: false, //不显示分页
allowAlternating: true, //显示斑马纹
allowSortColumn: true,
sortMode: "client",
columns: nNewColumns
}); |
|