The title of the grid. Appears in a separate row on top of the grid.
Examples
Material Design
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '/Players/Get',
title: 'Players',
columns: [ { field: 'ID', width: 56 }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
</script>
Bootstrap 3
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '/Players/Get',
uiLibrary: 'bootstrap',
title: 'Players',
columns: [ { field: 'ID', width: 34 }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
</script>
Bootstrap 4
<table id="grid"></table>
<script>
$('#grid').grid({
dataSource: '/Players/Get',
uiLibrary: 'bootstrap4',
title: 'Players',
columns: [ { field: 'ID', width: 34 }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
</script>