messages.sendButton String (default: "Send message")

The title and the aria-label attribute of the message box send button.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    messages: {
        sendButton: "This is send"
    }
}).data("kendoChat");
</script>
In this article