In the below kendo ui grid view the hidden column parameter is used
hide the column headers display by default but if you want to see the column go
to column check the check-box.
The code sample as given below.
<div id="gridViewHide"></div>
$("#gridViewHide").kendoGrid({
pageable: true,
scrollable: true,
resizable: true,
sortable: true,
columnMenu: true,
dataBound: function (e) {
},
columns: [
{ field: "ToCommitedService", title: "To Committed
Services", width: 60, hidden: true },
{ field: "GroupCommitedService", title: "Group
Committed Services", width: 60, hidden: true }
],
dataSource: {
type: "json",
transport: {
read: "http://localhost:37745/Contract/Api/Pricing/GetByCTID/" + session().PricingID
},
pageSize: 10
}
});