expandedBoolean(default: false)
Controls whether the step body is visible when the widget initializes.
Example - initialize the widget in expanded state
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "run_query",
expandable: true,
expanded: true,
parameters: { query: "SELECT * FROM orders" }
});
</script>