actionButtonObject(default: null)
Configures the action button (send/stop button) in the message input area. Allows customization of icons, text labels, and loading state appearance.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
authorId: "user",
actionButton: {
icon: "arrow-right",
text: "Submit",
loadingIcon: "loading",
loadingText: "Processing...",
}
});
</script>