messages.replyMessageCloseButtonString
(default: "Remove reply")
The title and aria-label for the button that removes a reply reference when composing a message.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "How can I help you today?",
authorId: "support",
authorName: "Support Agent",
timestamp: new Date(2026, 0, 1, 9, 0)
}
];
$("#chat").kendoChat({
messages: {
replyMessageCloseButton: "Cancel reply"
},
authorId: "user",
dataSource: messagesData
});
</script>
In this article