columns.valueColumn.widthNumber
The width of the column. Numeric values are treated as pixels. Refer to the documentation for details on using column widths and scrolling.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
columns: {
valueColumn: {
width: 350
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article