steps.buttons.enabled Boolean
(default: true)
Specifies whether the Button in question is enabled or not.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
buttons: [{
name: "custom",
enabled: false
}]
},
"Second step",
"Third step"
]
});
</script>