columns Object

The configuration of the PropertyGrid columns which allows for setting the field and value column configuration options.

Example - specifying the columns of the PropertyGrid

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