ID
Name
Place Of Birth
Date Of Birth
 
 
 
Page
 
 
of 
0
 
 
 
 
Displaying records 
0
 - 
0
 of 
0
Loading...


            <table id="grid"></table>
        

$(document).ready(function () {
    $("#grid").grid({
        dataSource: "GetPlayers",
        uiLibrary: "bootstrap",
        columns: [
            { field: "ID" },
            { field: "Name", sortable: true },
            { field: "PlaceOfBirth", title: "Place Of Birth" },
            { field: "DateOfBirth", title: "Date Of Birth", type: "date", sortable: true }
        ],
        pager: { enable: true, limit: 2, sizes: [2, 5, 10, 20] }
    });
});