grid.gutter.colsString|Number|Array
Defines the width of the gutters between the columns. When an array is used, it is mapped to set the gutter between the columns for the provided responsive breakpoints.
Example - setting the gutter rows value
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
ID: 1,
Name: "Ivan",
Address: "Sofia"
},
grid: {
cols: 2,
gutter: {
rows: 1,
cols: 2
},
rows: 1
},
items: [{
field: "Name",
label: "Name:"
}, {
field: "Address",
label: "Address:"
}]
});
</script>
In this article