fileActions.textString
Defines the display text for the context menu action. This text is shown to users in the context menu.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Here's the spreadsheet:",
authorId: "user1",
authorName: "John Doe",
authorImageUrl: "https://demos.telerik.com/kendo-ui/content/web/Customers/RICSU.jpg",
files: [{ name: "data.xlsx", size: 45000, extension: "xlsx" }],
timestamp: new Date(2026, 0, 1, 9, 0)
}
];
$("#chat").kendoChat({
fileActions: [
{ name: "download", text: "Download File", icon: "download" }
],
authorId: "user2",
dataSource: messagesData
});
</script>
In this article