zoukankan      html  css  js  c++  java
  • 折叠表格

    1、新建Web项目,项目的文件结构如下:



    2、ChangeDataGrid.html源码如下:

    <!DOCTYPE html>
    <html>
    <head>
    	<meta charset="UTF-8">
    	<title>Aligning Columns in DataGrid - jQuery EasyUI Demo</title>
    	<link rel="stylesheet" type="text/css" href="../style/easyui.css">
    	<link rel="stylesheet" type="text/css" href="../style/icon.css">
    	<link rel="stylesheet" type="text/css" href="../style/demo.css">
    	<script type="text/javascript" src="../../jquery.min.js"></script>
    	<script type="text/javascript" src="../script/jquery.easyui.min.js"></script>
    </head>
    <body>
    	<h2>可以折叠的表格</h2>
    	<div class="demo-info">
    		<div class="demo-tip icon-tip"></div>
    		<div>折叠表格</div>
    	</div>
    	<div style="margin:10px 0;"></div>
    	
    	<table class="easyui-datagrid" title="折叠表格" style="700px;height:250px"
    			data-options="singleSelect:true,collapsible:true,url:'../JSON/data.json'">
    		<thead>
    			<tr>
    				<th data-options="field:'itemid',80,halign:'center'">项目编号</th>
    				<th data-options="field:'productid',100,halign:'center'">产品</th>
    				<th data-options="field:'listprice',80,align:'right',halign:'center'">总价</th>
    				<th data-options="field:'unitcost',80,align:'right',halign:'center'">单价</th>
    				<th data-options="field:'attr1',250,halign:'center'">属性</th>
    				<th data-options="field:'status',60,align:'center',halign:'center'">地位</th>
    			</tr>
    		</thead>
    	</table>
    
    </body>
    </html>


  • 相关阅读:
    最长公共子序列
    小测试 炒书
    洛谷P1968 美元汇率
    洛谷P3611 [USACO17JAN]Cow Dance Show奶牛舞蹈
    【刷题】【树】【模拟】树网的核
    【刷题】【dp】地精的贸易
    【刷题】【模拟】复制cs
    【刷题】【模拟】3n+1
    【刷题】【dp】中国象棋
    【刷题】【搜索】新数独
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315777.html
Copyright © 2011-2022 走看看