buttons
Returns a collection of Buttons present in the Step.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [
{
title: "First Step",
content: "<h1>First Step Content</h1>",
buttons: ["previous", "next"]
},
{
title: "Second Step",
content: "<h1>Second Step Content</h1>"
}
]
});
var wizard = $("#wizard").data("kendoWizard");
var firstStep = wizard.steps()[0];
var stepButtons = firstStep.buttons();
console.log("Step buttons:", stepButtons);
</script>
Returns Array
Array[Button]
The Button instances available in the current Step.
In this article