- 行高设置
datagrid中没有专门设置行高的属性,所以需要通过修改easyui.css
样式来修改行高。
方法:在 easyui.css中搜索.datagrid-row
属性,将默认的行高height:25px
修改为想要的高度,即可。
.datagrid-row { height: 42px; text-align:center; }
- 文字超宽换行
在<table>中设置nowrap:false
换行
<table id="dg" class="easyui-datagrid" data-options="pagination:true, singleSelect:true, fitColumns:true, nowrap:false">
注意datagrid行中设置fitColumns:true
的单元格无法换行。 <th data-options="field:'contractDate',fitColumns:true">登记时间</th>