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