showBoundaryLinks

Whether to display First and Last buttons.The default value is true:

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