码迷,mamicode.com
首页 > 其他好文 > 详细

easyui datagrid 跨页选择

时间:2016-01-20 17:11:58      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

首先,要加入idField属性

其次,idField属性必须是数据集中某一字段,且唯一。

然后,就象这样:

$(document).ready(function () {
        $("#tt").datagrid({
            url: ‘/Control/ajax.ashx?class=DC.BusinessLogic.App.AppAction&method=GetPrint‘,
            rownumbers: true,
            pagination: true,
            idField:‘productid‘,
            height: $(document).height() - 100,
            width: $(document).width(),
            columns: [[
                 { field: ‘productid‘, title: ‘物料ID‘, width: 100, checkbox: true },
                 { field: ‘productcode‘, title: ‘物料编码‘, width: 100 },
                 { field: ‘productname‘, title: ‘物料名称‘, width: 200 },
                 { field: ‘unitname‘, title: ‘单位名称‘, width: 100 },
                 { field: ‘brandname‘, title: ‘品牌名称‘, width: 100 },
                 { field: ‘spec‘, title: ‘规格‘, width: 100 },
                 { field: ‘differenceno‘, title: ‘助记码‘, width: 100 },
                 { field: ‘scalerrate‘, title: ‘换算率‘, width: 100, hidden: true }
            ]]
        });
    })

 

easyui datagrid 跨页选择

标签:

原文地址:http://www.cnblogs.com/wpcnblog/p/5145701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!