datagrid 设置的nowrap无效
2019-08-01 本文已影响0人
AdamSun19
<table id="dg" class="easyui-datagrid" data-option="iconCls: 'icon-edit',
singleSelect: true,
autoRowHeight: true,
striped: true,
nowrap: false,
remoteSort: false,
fitColumns: true">
</table>
在查询出数据,将数据加载到表中后,发现nowrap这个属性没有生效。
解决:
//将数据加载到表时调用
$('#dg').datagrid({
nowrap: false
}).datagrid("loadData",data);