templateFunction(default: null)
A function used to render the entire checkpoint body, replacing the default button layout. Called with an empty object and must return an HTML string.
Example - use a custom template
<div id="checkpoint"></div>
<script>
$("#checkpoint").kendoCheckpoint({
template: function() {
return "<span>Custom checkpoint content</span>";
}
});
</script>