resizable Boolean (default: true)

When set to true the user will be able to resize columns via the context menu. When set to false the ContextMenu Resize command will not be available.

Example - disable the Details/Info box for properties displayed in the PropertyGrid

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    width: 400,
    columns: {
        fieldColumn: { width: 200 },
        valueColumn: { width: 250 }
    },
    model: {
        foo: "bar",
        baz: 5
    },
    resizable: false,
    items: [
        {field: "foo", description: "I am foo!"},
        {field: "baz", description: "I am baz!" }
    ]
  });
</script>
In this article