contentTemplateFunction(default: null)
A function used to render the content body. Called with an empty object and must return an HTML string.
Example - use a content template
<div id="reasoning"></div>
<script>
$("#reasoning").kendoReasoning({
label: "Reasoning",
expandable: true,
expanded: true,
contentTemplate: function() {
return "<ul><li>Approach A</li><li>Approach B</li></ul>";
}
});
</script>