New to Kendo UI for jQueryStart a free 30-day trial

Enable

methods

Enables or disables all steps in the Stepper.

Parameters:valueBoolean

Specifies whether the steps should be enabled (true) or disabled (false).

<nav id="stepper"></nav>

<script>
    var stepper = $("#stepper").kendoStepper({
        steps: [{
            label: "Initial step"
        }, {
            label: "Second step"
        },{
            label: "Third step"
        }]
    }).getKendoStepper();

	stepper.enable(false);
</script>
Not finding the help you need?
Contact Support