nowrap属性对于英文字母,数字无效,设置列宽度,也不能自动换行或者由于某些样式冲突导致直接不起作用的情况下,可采用以下办法解决换行问题。
解决办法:定义一个formatter方法,实现换行
/*** 表格列宽度不够,设置列内容换行显示* @param value 列值* @param row 行对象* @param index 行索引* @returns {string}*/function preWrapTextColumn(value, row, index) {return '<div style="word-break:break-all; word-wrap:break-word;white-space:pre-wrap;line-height: 20px;margin: 5px;">' + value + '</div>';}
方法名preWrapTextColumn可自定义,以下样式也是可选的:
line-height: 20px;
margin: 5px;
换行方法使用:
(1)JEECG框架t:datagrid表格控件列使用:
formatterjs="preWrapTextColumn"
(2)EasyUI框架表格控件列使用:
formatter: function (value, row, index) {return preWrapTextColumn(value, row, index); }