ID
Name
Place Of Birth
 
Loading...


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

$(document).ready(function () {
    $("#grid").grid({
        loader: { url: "GetPlayers" },
        autoLoad: true,
        columns: [
            { name: "ID", index: "ID" },
            { name: "Name", index: "Name" },
            { name: "Place Of Birth", index: "PlaceOfBirth" }
        ]
    });
});