steps.buttons.name String

Specifies the name of the Button. The default buttons have "reserved" names (those names are "previous", "next", "done", "reset"). That would allow additional customization of that Buttons' text and behavior.

Example

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

<script>
    $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step",
            buttons: [{
                name: "next",
                text: "Custom next",
                click: function() {
                    alert("Next clicked");
                }
            }]
        },
        "Second step",
        "Third step"
        ]
    });
</script>
In this article