messages.states.errorString(default: "Error")
The display name for the "error" state.
Example - set the error state label
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "fetch_data",
state: "error",
messages: {
states: { error: "Failed" }
}
});
</script>