ExtJS 6.6 Grid中内容过多换行显示

grid里显示最烦的就是内容太多显示不下,虽然说这会导致行高度改变,变的比较丑

 

 

{
				header : '通道',
				dataIndex : 'route',
				align : 'left',
				flex : 1.2,// 满格填充
				renderer : function(value,metadata, record) {
					//实现换行
					metadata.style = 'overflow:auto;padding: 3px 6px;text-overflow: ellipsis;white-space: nowrap;white-space:normal;line-height:20px;';
                    return value;
                }
}
					

ExtJS 6.6 Grid中内容过多换行显示_第1张图片

你可能感兴趣的:(ExtJS6)