items.groupString
Sets the name of the group to which the property will belong, if grouping is enabled. Only root level items can be grouped.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
items: [
{ field: "name", group: "Basic Info" },
{ field: "description", group: "Basic Info" },
{ field: "price", group: "Financial" },
{ field: "cost", group: "Financial" }
],
model: {
name: "Laptop",
description: "High-performance laptop",
price: 999,
cost: 500
}
});
</script>