fileActions.iconString
Defines the icon class for the context menu action. The icon appears next to the action text in the context menu.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Check out this file:",
authorId: "user1",
authorName: "John Doe",
authorImageUrl: "https://demos.telerik.com/kendo-ui/content/web/Customers/RICSU.jpg",
files: [{ name: "image.jpg", size: 156000, extension: "jpg" }],
timestamp: new Date(2026, 0, 1, 9, 0)
}
];
$("#chat").kendoChat({
fileActions: [
{ name: "download", text: "Download", icon: "download" }
],
authorId: "user1",
dataSource: messagesData
});
</script>
In this article