文档彩票走势图>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:在数据网格的页脚中显示摘要信息
jQuery EasyUI使用教程:在数据网格的页脚中显示摘要信息
Kendo UI for jQuery——创建现代Web应用程序的最完整UI库!查看详情>>>
在本教程中,我们将为您展示如何在数据网格的页脚中显示摘要信息行。
想要显示页脚行,您应该将showFooter属性设置为true,然后准备定义在数据网格数据中的页脚行。以下是示例数据:
{"total":1,"rows":[{"id":1,"name":"Chai","price":18.00}],"footer":[{"name":"Total","price":18.00}]}
创建数据网格
<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>
页脚行和显示数据行一样,所以您可以在页脚显示不止一个摘要信息。
下载EasyUI示例: