日期:2014-05-16 浏览次数:20626 次
<script type="text/javascript">
$(function () {
list();
});
function list() {
$('#test').datagrid({
title: '管理组数据列表',
//method: 'Get',
width: 700,
height: 550,
checkOnSelect:false,
url: '/Handler/AdminGroup.ashx',
frozenColumns: [[
{ field: 'ck', checkbox: true },
{ field: 'Yi_ID', title: '编号', width: 80, align: 'center' },
{ field: 'Yi_GroupName', title: '管理组名称', width: 120, align: 'center' },
{ field: 'Yi_MenuID', title: '管理组权限', width: 120, align: 'center' },
{ field: 'Yi_PID', title: '操作', width: 120,align:'center',
formatter: function (value, rec) {
return '<span style="color:red"><a href="#" onclick="javascript:btnEdit();">编辑</a></span>';
}
}
]],
toolbar: [{
text: '添加',
iconCls: 'icon-add',
handler: function () {
btnAdd();
&