items.itemsArray

Additional configuration options for the nested properties of the model, if any.

Example

<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    items: [
        { 
            field: "address",
            items: [
                { field: "street" },
                { field: "city" },
                { field: "zipCode" }
            ]
        }
    ],
    model: {
        address: {
            street: "123 Main St",
            city: "Anytown",
            zipCode: "12345"
        }
    }
});
</script>
In this article
items.items
Not finding the help you need?
Contact Support