items.descriptionString
Sets the description for the property.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
items: [
{ field: "name", description: "The name of the item" },
{ field: "price", description: "The price in USD" }
],
model: {
name: "Laptop",
price: 999
}
});
</script>
In this article