grid.gutter.cols.valueNumber
Defines the col gap value for the specific breakpoint.
Example - setting the gutter rows value
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
ID: 1,
Name: "Ivan",
Address: "Sofia"
},
grid: {
cols: 2,
gutter: {
cols: [{
maxWidth: 600,
value: 5
},
{
minWidth: 601,
maxWidth: 800,
value: 10
},
{
minWidth: 801,
maxWidth: 2800,
value: 15
}],
rows: 2
},
rows: 1
},
items: [{
field: "Name",
label: "Name:"
}, {
field: "Address",
label: "Address:"
}]
});
</script>
In this article