column.title : string Default: undefined
The caption that is going to be displayed in the header of the grid.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: "../Grid/GetPlayers",
columns: [
{ field: "ID" },
{ field: "Name", title: "Player" },
{ field: "PlaceOfBirth", title: "Place of Birth" },
{ field: "DateOfBirth", type: "date", title: "Birth Date" }
]
});
</script>