1. 程式人生 > >EasyUI中datagrid設定分頁的PageSize和PageList

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]

        });