contextMenu.body.nameString
Specifies the name of the item.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
contextMenu: {
body: [{
name: "custom",
text: "Custom Action",
command: "CustomCommand"
}]
},
model: {
foo: "bar",
baz: 5
}
});
</script>