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>
In this article
contentTemplate
Not finding the help you need?
Contact Support