steps.buttons.primary Boolean
(default: false)
Specifies whether the Button will have the k-primary
class assigned or not.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
buttons: [{
name: "custom",
primary: true
}]
},
"Second step",
"Third step"
]
});
</script>