width Number
Sets the width of the PropertyGrid. Numeric values are treated as pixels.
Example - set the width of the PropertyGrid
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
model: {
foo: "bar",
baz: 5
},
width: 500
});
</script>