messages.fileMenuButtonString
(default: "File menu")
The title and aria-label for the button that opens the context menu for file attachments.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Here's the document you requested.",
authorId: "support",
authorName: "Support Agent",
timestamp: new Date(2026, 0, 1, 9, 0),
files: [{
name: "document.pdf",
size: 1024000,
url: "path/to/document.pdf"
}]
}
];
$("#chat").kendoChat({
messages: {
fileMenuButton: "File options"
},
authorId: "user",
dataSource: messagesData
});
</script>
In this article