grid.gutter.rows.minWidthNumber

Defines the minimum width in pixels for the specific breakpoint gutter row value.

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: [{
                    maxWidth: 600,
                    value: 5
                },
                {
                    minWidth: 601,
                    maxWidth: 800,
                    value: 10
                },
                {
                    minWidth: 801,
                    maxWidth: 2800,
                    value: 15
                }],
                cols: 2
            },
            rows: 1
        },
        items: [{
            field: "Name",
            label: "Name:"
        }, {
            field: "Address",
            label: "Address:"
        }]
    });
</script>
In this article
grid.gutter.rows.minWidth
Not finding the help you need?
Contact Support