messages.doneString
(default: "Done")
Specifies text to be rendered in the "Done" button on the final step.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [
{ title: "Initial step" },
{ title: "Second step" },
{ title: "Final step" }
],
messages: {
done: "Complete"
}
});
</script>
In this article