title : string Default: undefined


The title of the grid. Appears in a separate row on top of the grid.

Examples

  
Edit this example
<table id="grid"></table> <script> $('#grid').grid({ dataSource: '../Grid/GetPlayers', title: 'Players', columns: [ { field: 'ID' }, { field: 'Name' }, { field: 'PlaceOfBirth' } ] }); </script>