columns.title String
The text that is displayed in the column header cell. If not set the field is used.
Note: Column titles should not contain HTML entities or tags. If such exist, they should be encoded.
Example - set the title of the column
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [ { field: "name", title: "Name" } ],
dataSource: [ { name: "Jane Doe" }, { name: "John Doe" } ]
});
</script>