done

Triggered when the "Done" 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.

e.forms Array

An array of all Kendo UI Form widgets (if any) configured within the Wizard widget.

Example

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

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