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>