有熟悉easyUI的大佬吗,求助
大佬们easyUI的datagrid能实现上面图这种表格吗
在一个单元格内多标题这种
是最左边的那个框
不是红框内的 貌似不能。。。 本帖最后由 xuet 于 2020-5-18 10:05 编辑
可能可以两个把 不能多个把 我去找找代码 好久没写过了 本帖最后由 八月不到底 于 2020-5-18 09:42 编辑
easyui 没有这种... 你可以看看column group这个方法
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Column Group - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
<link rel="stylesheet" type="text/css" href="../demo.css">
<script type="text/javascript" src="../../jquery.min.js"></script>
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
<table class="easyui-datagrid" title="Column Group" style="width:700px;height:250px"
data-options="rownumbers:true,singleSelect:true,url:'datagrid_data1.json',method:'get'">
<thead>
<tr>
<th data-options="field:'itemid',width:80" rowspan="2">Item ID</th>
<th data-options="field:'productid',width:100" rowspan="2">Product</th>
<th colspan="4">Item Details</th>
</tr>
<tr>
<th data-options="field:'listprice',width:80,align:'right'">List Price</th>
<th data-options="field:'unitcost',width:80,align:'right'">Unit Cost</th>
<th data-options="field:'attr1',width:240">Attribute</th>
<th data-options="field:'status',width:60,align:'center'">Status</th>
</tr>
</thead>
</table>
</body>
</html>
以我目前的使用经验来说,实现不了的 没有直接api能提供这种显示 可以在那个格子内贴一张图 放张图片吧,还没见过这种
页:
[1]