nextText

Reprsents next button’s text.Default value is "& rsaquo;":

$(document).ready(function () {
    $("#grid").shieldGrid({
        dataSource: {
            data: gridData                 
        },                
        paging: {
            pageSize: 7,                    
            pageLinksCount: 12,
            messages: {
                nextText: "Next"
            }
        },
        columns: [                                
        { field: "name", title: "Person Name" },
        { field: "age", title: "Person Age" },
        { field: "address", title: "Person Address" }              
        ]
    });
});