GIJGO
Run Example
Close Window
<html> <head> <title>Getting Started with jQuery Grid</title> <meta charset="utf-8" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css" /> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script> </head> <body> <table id="grid"></table> <script type="text/javascript"> $(document).ready(function () { var grid = $('#grid').grid({ dataSource: '/Players/Get', columns: [ { field: 'ID', width: 56 }, { field: 'Name', sortable: true }, { field: 'PlaceOfBirth', title: 'Place Of Birth', sortable: true }, { field: 'DateOfBirth', title: 'Date Of Birth', type: 'date', width: 150 } ], pager: { limit: 5 } }); }); </script> </body> </html>