paging

Represents the configuration which is related with the grid pager.
The grid control takes advantage of the shieldPager control. It exposes the shield pager control options via the paging configuration:

$(document).ready(function () {
    $("#grid").shieldGrid({
        dataSource: {
            data: gridData                 
        },
        paging: {
            pageSize: 12,
            pageLinksCount: 10
        },
        columns: [                
        { field: "id", width: "70px", title: "ID" },
        { field: "name", title: "Person Name"},
        { field: "company", title: "Company Name"},
        { field: "email", title:"Email Address", width: "270px"}
        ]
    });
});       

Online example you can find here: paging

You can set the following options: