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