easyui datagrid 的 rowspan怎么用
推荐于2016-12-02
展开全部
我知道标题行的用法类似html里面的table的用法
同样是标题行,红色的就是rowspan,合并了上下两个单元格,也就是合并行, 蓝色的是colspan,是合并了四列,就是合并列
官方给的代码范例是
<table id="tt" title="Column Group" class="easyui-datagrid" style="width:550px;height:250px"
url="data/datagrid_data.json"
singleSelect="true" iconCls="icon-save" rownumbers="true">
<thead>
<tr>
<th rowspan="2" field="itemid" width="80">Item ID</th>
<th rowspan="2" field="productid" width="80">Product ID</th>
<th colspan="4">Item Details</th>
</tr>
<tr>
<th field="listprice" width="80" align="right">List Price</th>
<th field="unitcost" width="80" align="right">Unit Cost</th>
<th field="attr1" width="100">Attribute</th>
<th field="status" width="60" align="center">Stauts</th>
</tr>
</thead>
</table>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询