contextMenu Object|Boolean (default: false)

Configures the ContextMenus of the Grid.

Example

<div id="grid"></div>
<script>
    $("#grid").kendoGrid({
        contextMenu: true,
        editable: true,
        sortable: true,
        draggable: true,
        reorderable: true,
        dataSource: new kendo.data.DataSource({
            schema: {
                model: {
                    id: "foo",
                    fields: {
                        name: "name",
                        foo: "foo",
                    },
                },
            },
            data: [
                { foo: "bar", name: "tom" },
                { foo: "baz", name: "jerry" },
            ],
        }),
    });
</script>
In this article