easyui datagridクロスページ選択

1572 ワード

まず、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 }
            ]]
        });
    })