columns.columnMenu Boolean (default: true)

If set to false the column menu will not be rendered for the specific column.

Example - hide the column menu

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "id", columnMenu: false },
    { field: "name" },
    { field: "age" }
  ],
  columnMenu: true,
  dataSource: [
    { id: 1, name: "Jane Doe", age: 30 },
    { id: 2, name: "John Doe", age: 33 }
  ]
});
</script>
In this article