contextMenuObject|Boolean
(default: false)
Configures the ContextMenu of the PropertyGrid. If set to true
enables the default ContextMenu.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
contextMenu: true,
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article