grid.cols.minWidthNumber

Defines the minimum width in pixels for which the specific breakpoint col value for the columns applies.

Example - setting columns to an array

<form id="myForm"></form>

<script>
    $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        layout: "grid",
        grid: {
            cols: [{
                maxWidth: 600,
                value: 2
            },
            {
                minWidth: 601,
                maxWidth: 800,
                value: 3
            },
            {
                minWidth: 801,
                maxWidth: 2800,
                value: 4
            }],
            gutter: 10,
            rows: 1
        },
        items: [{
            field: "Name",
            label: "Name:"
        }, {
            field: "Address",
            label: "Address:"
        }]
    });
</script>
In this article
grid.cols.minWidth
Not finding the help you need?
Contact Support