model Object

Defines the model to which the PropertyGrid is bound to.

Example - define the model to which the PropertyGrid is bound

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    model: {
        foo: "bar",
        baz: 5
    },
    width: 500
  });
</script>
In this article