loadOnDemand Boolean (default: false)

Indicates whether the step content will be loaded on demand when a given step is selected. Applicable when the step configuration has "contentUrl" set.

Example

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

<script>
    $("#wizard").kendoWizard({
        loadOnDemand: true,
        steps: ["Initial step", {
            title: "Second step",
            contentUrl: "https://demos.telerik.com/kendo-ui/content/web/tabstrip/ajax/ajaxContent1.html"
        }, "Third step"]
    });
</script>
In this article