messages.states.activeString(default: "Active")
The display name for the "active" state.
Example - set the active state label
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "run_task",
messages: {
states: { active: "Running" }
}
});
</script>