codecamp

jQuery EasyUI 数据网格 – 添加工具栏

jQuery EasyUI 数据网格 - 添加工具栏

本节将会在jQuery EasyUI数据网格(datagrid)中添加工具栏(toolbar)。

下述实例演示了向数据网格添加工具栏的操作。

创建数据网格(DataGrid)

	<table id="tt" class="easyui-datagrid" style="width:600px;height:250px" url="data/datagrid_data.json" 			
                       title="DataGrid with Toolbar" iconCls="icon-save" toolbar="#tb">
		<thead>
			<tr>
				<th field="itemid" width="80">Item ID</th>
				<th field="productid" width="80">Product ID</th>
				<th field="listprice" width="80" align="right">List Price</th>
				<th field="unitcost" width="80" align="right">Unit Cost</th>
				<th field="attr1" width="150">Attribute</th>
				<th field="status" width="60" align="center">Stauts</th>
			</tr>
		</thead>
	</table>
	<div id="tb">
		<a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="javascript:alert('Add')">Add</a>
		<a href="#" class="easyui-linkbutton" iconCls="icon-cut" plain="true" onclick="javascript:alert('Cut')">Cut</a>
		<a href="#" class="easyui-linkbutton" iconCls="icon-save" plain="true" onclick="javascript:alert('Save')">Save</a>
	</div>

我们不需要写任何的javascript代码,只需通过'toolbar'属性附加工具栏到数据网格。

下载 jQuery EasyUI 实例

jeasyui-datagrid-datagrid4.zip

jQuery EasyUI 数据网格 – 添加查询功能
jQuery EasyUI 数据网格 – 创建复杂工具栏
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

jQuery EasyUI 教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }