stateString(default: null)
The current action state of the checkpoint. Determines the button label and the action value emitted in the action event. Valid values are "startOver", "restore", and "redo".
Example - set the state to restore
<div id="checkpoint"></div>
<script>
$("#checkpoint").kendoCheckpoint({
state: "restore"
});
</script>