columns.hidden Boolean
(default: false)
If set to true
the column will not be displayed in the grid. By default all columns are displayed.
Example - hide columns
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ hidden: true, field: "id" },
{ field: "name" }
],
dataSource: [ { id: 1, name: "Jane Doe" }, { id: 2, name: "John Doe" } ]
});
</script>