GIJGO
Run Example
Close Window
<!DOCTYPE html> <html> <head> <title>jQuery Grid Column Template</title> <meta charset="utf-8" /> <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> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="container-full"> <div class="row"> <div class="col-xs-12"> <table id="grid"></table> </div> </div> </div> <script type="text/javascript"> $(document).ready(function () { $('#grid').grid({ dataSource: '/Players/Get', uiLibrary: 'bootstrap', columns: [ { field: 'ID', width: 35 }, { title: 'Info', tmpl: '{Name} is born in {PlaceOfBirth}.' }, { field: 'DateOfBirth', title: 'Date Of Birth', type: 'date', sortable: true, width: 150 } ] }); }); </script> </body> </html>