thoughts.childrenString
An HTML string rendered as a nested body inside the thought item.
Example - add nested content to a thought
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Analyzing",
expanded: true,
thoughts: [
{ label: "Result", children: "<pre>{ ok: true }</pre>" }
]
});
</script>