expandableBoolean(default: false)
Enables toggling the visibility of the step body by clicking the header or using the keyboard.
Example - enable expand and collapse
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "run_query",
expandable: true,
parameters: { query: "SELECT * FROM orders" }
});
</script>