Have a look at this fiddle
var _grid = $("#grid").kendoGrid({
dataSource: _peopleDataSource,
filterable: true,
columnMenu: true,
columns: [
{
field: "id",title: " ",width: 10
},
{
field: "name",title: "Name",width: 40
},{
field: "roleTitle",title: "Role",width: 50
}
],
editable: true
}).data("kendoGrid");
The column for Id
is not having column title. However, inside grid column menu, I need to show the column name as Id
.
I am not finding anything on kendo documentation. Any idea how I can achieve this?