columnMenu.columns Boolean|Object
(default: true)
If set to true
the column menu would allow the user to select (show and hide) grid columns. By default the column menu allows column selection.
Example - disable column selection
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
columnMenu: {
columns: false
},
sortable: true,
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
]
});
</script>