contextMenu.body.commandString
Specifies the command of the item.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    contextMenu: {
        body: [{
            name: "customItem",
            text: "Execute Command",
            command: "MyCustomCommand"
        }]
    },
    model: {
        foo: "bar",
        baz: 5
    }
});
</script>
In this article