messages

Contains properties related with the shown messages into the pager parts.

$(document).ready(function () {
    $("#grid").shieldGrid({
        dataSource: {
            data: gridData                 
        },                
        paging: {
            pageSize: 7,                    
            pageLinksCount: 12,
            messages: {
                infoBarTemplate: "From {0} to {1} items of a total of {2}",                      
                firstTooltip: "First page",
                previousTooltip: "Previous page",
                nextTooltip: "Next page",
                lastTooltip: "Last page"
            }
        },
        columns: [                                
        { field: "name", title: "Person Name" },
        { field: "age", title: "Person Age" },
        { field: "address", title: "Person Address" }              
        ]
    });
});