pager Boolean (default: true)

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

Example

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

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