stepsArray
Array of steps to be rendered in the Wizard.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [
{
title: "Personal Information",
content: "<div>Enter your personal details</div>",
icon: "user"
},
{
title: "Contact Information",
content: "<div>Enter your contact details</div>",
icon: "email"
},
{
title: "Review",
content: "<div>Review your information</div>",
icon: "check"
}
]
});
</script>
In this article