messages.sendButtonString
(default: "Send message")
The title and aria-label for the send button.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Look at the send button - it says 'Send now' instead of the default text!",
authorId: "admin",
authorName: "Admin",
authorImageUrl: "https://demos.telerik.com/kendo-ui/content/web/Customers/RICSU.jpg",
timestamp: new Date(2026, 0, 1, 9, 0)
},
{
id: 2,
text: "That's a nice customization for the send button tooltip!",
authorId: "user",
authorName: "User",
authorImageUrl: "https://demos.telerik.com/kendo-ui/content/web/Customers/LONEP.jpg",
timestamp: new Date(2026, 0, 1, 9, 5)
}
];
$("#chat").kendoChat({
messages: {
sendButton: "Send now"
},
authorId: "user",
dataSource: messagesData
});
</script>
In this article