EasyUI中datagrid设置分页的PageSize和PageList

        $('#tt').datagrid({
            width: 880,
            
            nowrap: true,
            singleSelect: false,
            rownumbers: true,
            pagination: true,
            param: true,
            url: '/Service/ArticleHandler.ashx',
            idField: 'id',
            columns: [[
                  { field: 'ck', checkbox: true },
                  { field: 'id', title: '编号', width: 60 },
                  { field: 'classname', title: '类别名称', width: 150, align: 'center' },
                  { field: 'title', title: '标题', width: 300 },
                  { field: 'author', title: '作者', width: 150 },
                  { field: 'status', title: '状态', width: 70 },
                  { field: 'hit', title: '点击量', width: 70 }
            ]],
            pageSize: 2, 
            pageList: [2, 25, 50, 100]

        });

你可能感兴趣的:(EasyUI)