前台的格式
$('#tt').datagrid({
url: '/UserInfo/LoadAllUserInfoJson', //
title: '用户信息列表', //标题
width: 800, //宽度
height: 455, //高度
fitColumns: true, //列自适应
idField: 'UserInfoId', //主键的列名
loadMsg: '正在加载用户的信息...', //等待 展示的文字
pagination: true, //是否分页
singleSelect: false, //是否单行选择
pageSize: 13, //一页多少条数据
pageNumber: 1, //当前默认页
pageList: [13, 26],
rownumbers: true, //显示行号
queryParams: params, //往后台传送数据
columns: [[
{ field: 'UserInfoId', title: '用户编号', width: 80 }
]]
}
$.parseJSON(data) 接受一个标准的JSON字符串,返回解析后的对象
$(function () {
// $('#redo').linkbutton('disable'); //禁止下一周的按钮
$('#ShiPuData').datagrid({
fit: true,
border: false,
nowrap: true,
autoRowHeight: false,
fitColumns: true,
striped: true,
url: '../../Handler/CookBookHandler.ashx?action=GetMenu',
remoteSort: false,
singleSelect: true,
pageSize: 30,
frozenColumns: [[{ field: 'ck', checkbox: true}]],
columns: [[
{ field: 'T_Dish1', title: '荤菜一', width: 120, align: 'center' },
{ field: 'T_Dish2', title: '荤菜二', width: 100, align: 'center' },
{ field: 'T_Vegetables', title: '蔬菜', width: 100, align: 'center' },
{ field: 'T_Soup', title: '汤', width: 150, align: 'center' },
{ field: 'T_Staple', title: '主食', width: 150, align: 'center' },
{ field: 'T_Date', title: '日期', width: 150, align: 'center' }
]],
pagination: true,
rownumbers: true,
onLoadSuccess: function (data) {
$(".searmorepic").linkbutton({ iconCls: 'icon-add', plain: true });
$(".togj").linkbutton({ iconCls: 'icon-search', plain: true });
},
toolbar: "<div id='cptool'></div>"
});
// $("#browser").hide();
$("#searchtool").show();
$("#searchtool").appendTo("#cptool");
});