validateForms Boolean | Object (default: true)

Indicates whether the Wizard will automatically validate any Kendo Form configured for a Step. Validation will be executed upon Step navigation.

Example

<div id="wizard"></div>

<script>
    $("#wizard").kendoWizard({
        validateForms: false,
        steps: [{
            title: "first",
            form: {
                formData: {
                    name: null
                },
                items: [{
                    field: "name",
                    validation: {
                        required: true
                    }
                }]
            }
        },{
            title: "second"
        }]
    });
</script>
In this article