steps.contentId String

Specifies the id of a DOM element, which content to be used as a content of the current step.

Example

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

<script id="step" type="text/kendo-template">
    <h3>HTML content</h3>
    <p>This is a harcoded HTML content for this step.</p>
</script>

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