steps.buttons.text String

Specifies the text to be displayed in the Button.

Example

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

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