displayModeString(default: "hover")
Controls when the checkpoint button is visible. When set to "always", the button is always shown. When set to "hover", the button appears only on hover.
Example - always show the checkpoint button
<div id="checkpoint"></div>
<script>
$("#checkpoint").kendoCheckpoint({
state: "restore",
displayMode: "always"
});
</script>