actionBar Boolean (default: true)

Indicates whether the Steps in the Wizard will render their Buttons and Pager element.

Example

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

<script>
    $("#wizard").kendoWizard({
        actionBar: false,
        steps: ["Initial step", "Second step", "Third step"]
    });
</script>
In this article