reset

Triggered when the "Reset" action Button has been clicked

Event Data

e.sender kendo.ui.Wizard

The Wizard instance that triggered the event.

e.originalEvent Object

The original DOM event.

e.button kendo.ui.Button

The Button instance that has been clicked in order raise the event.

Example

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

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