expand
Expands the step body. Has no effect if expandable is false.
Example - expand the step
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "run_query",
expandable: true,
parameters: { q: "test" }
});
var toolCall = $("#toolcall").data("kendoToolCall");
toolCall.expand();
</script>