jEasyUI 建立頁尾摘要


在本教學中,我們將向您展示如何在資料網格(datagrid)頁腳顯示摘要資訊行。

70.png

為了顯示頁腳行,您應該設定 showFooter 屬性為 true,然後準備定義在資料網格(datagrid)資料中的頁腳行。以下是範例資料:

	{"total":1,"rows":[{"id":1,"name":"Chai","price":18.00}],"footer":[{"name":"Total","price":18.00}]}

建立資料網格(DataGrid)

	<table id="tt" title="DataGrid" class="easyui-datagrid" style="width:400px;height:250px"
			url="data/datagrid17_data.json"
			fitColumns="true" rownumbers="true" showFooter="true">
		<thead>
			<tr>
				<th field="name" width="80">Product Name</th>
				<th field="price" width="40" align="right">Unit Price</th>
			</tr>
		</thead>
	</table>

頁腳行和顯示資料行一樣,所以您可以在頁腳顯示不只一個摘要資訊。

下載 jQuery EasyUI 實例

jeasyui-datagrid-datagrid17.zip