文檔首頁(yè)>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:在數(shù)據(jù)網(wǎng)格的頁(yè)腳中顯示摘要信息
jQuery EasyUI使用教程:在數(shù)據(jù)網(wǎng)格的頁(yè)腳中顯示摘要信息
Kendo UI for jQuery——?jiǎng)?chuàng)建現(xiàn)代Web應(yīng)用程序的最完整UI庫(kù)!查看詳情>>>
在本教程中,我們將為您展示如何在數(shù)據(jù)網(wǎng)格的頁(yè)腳中顯示摘要信息行。
想要顯示頁(yè)腳行,您應(yīng)該將showFooter屬性設(shè)置為true,然后準(zhǔn)備定義在數(shù)據(jù)網(wǎng)格數(shù)據(jù)中的頁(yè)腳行。以下是示例數(shù)據(jù):
{"total":1,"rows":[{"id":1,"name":"Chai","price":18.00}],"footer":[{"name":"Total","price":18.00}]}
創(chuàng)建數(shù)據(jù)網(wǎng)格
<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>
頁(yè)腳行和顯示數(shù)據(jù)行一樣,所以您可以在頁(yè)腳顯示不止一個(gè)摘要信息。
下載EasyUI示例:easyui-datagrid-demo.zip