focusFirst Boolean (default: false)

Specifies if the first editor of the form will be focused on initialization.

Example

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

<script>
    $("#myForm").kendoForm({
        formData: {
            Name: "Ivan",
            ZipCode: 1000
        },
        focusFirst: true
    });
</script>
In this article