scrollable Boolean (default: true)

If set to true, the PropertyGrid will display a scrollbar when the total row height or width exceeds the PropertyGrid height or width. By default, scrolling is enabled.

Example - disable the scrolling for the PropertyGrid

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