activate

Fires when a new step has been selected upon user interaction.

Event Data

e.sender kendo.ui.Wizard

The Wizard instance that triggered the event.

e.step kendo.wizard.Step

The Step instance that has been selected.

Example

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

<script>
    $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step"
        },{
            title: "Second step"
        }],
        activate: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(e.step.options.title + " step activated.");
        }
    });
</script>
In this article