关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

Easyui 绑定

发布时间:2019-11-01 09:15:19

Easyui绑定代码:

$('#staffGird').datagrid({
	url: "handler/StaffAdminHandler.ashx",
	title: "员工(职员)列表",
	loadMsg: "正在加载员工(职员)数据,请稍等...",
	width: size.width,
	height: size.height,
	idField: 'Id',
	singleSelect: true,
	striped: true,
	rownumbers: true,
	columns: [[
			{ title: '主键', field: 'Id', hidden: true },
			{ title: '编号', field: 'Code', width: 100 },
			{ title: '姓名', field: 'RealName', width: 100 },
			{ title: '性别', field: 'Gender', width: 35, align: 'center' },
			{ title: '出生日期', field: 'Birthday', align: "center", width: 90 },
			{ title: '手机号码', field: 'Mobile', width: 120 },
			{ title: '办公电话', field: 'OfficePhone', width: 120 },
			{ title: '邮箱地址', field: 'Email', width: 150 },
			{ title: '有效', field: 'Enabled', width: 50, align: 'center', formatter: imgcheckbox },
			{ title: '描述', field: 'Description', width: 260 },
			{ title: 'UserId', field: 'UserId', hidden: true }
		]],
	rowStyler: function (index, row, css) {
		if (row.UserId != "") {
			return 'font-weight:bold;';
		}
	},
	onLoadSuccess: function (data) {
		if (data.rows.length > 0) {
			$('#staffGird').datagrid("selectRow", 0);
		}
	}
});



/template/Home/Zkeys/PC/Static