Hi,
When I use a kendo grid column menu with a column.command property, it seems to override the columnMenu,
As a test case, https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columnmenu
if you put a command in it, you will not see the column menu (3 dotted symbol) in the column header.
Is this how it is intended because I couldn't find any documentation on the situation.
If so, what are your recommendation if I want to use the column menu and also have some custom functions for the column using command property
For example:
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name", command: { name: "cmdName", click: function (e) { }} },
{ field: "age" }
],
columnMenu: true,
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
]
});
</script>