suggestedActionsScrollableBoolean
(default: false)
Enables or disables scrollable behavior for suggested actions.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Speech-to-text functionality has been disabled in this chat. You won't see the microphone button.",
authorId: "admin",
authorName: "Chat 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 fine, I can type my messages manually.",
authorId: "user",
authorName: "User",
authorImageUrl: "https://demos.telerik.com/kendo-ui/content/web/Customers/LONEP.jpg",
timestamp: new Date(2026, 0, 1, 9, 5),
suggestedActions: [
{ text: "Yes" }, { text: "No" }, { text: "Maybe" },
{ text: "Cancel" }, { text: "Continue" }, { text: "Help" }
]
}
];
$("#chat").kendoChat({
dataSource: messagesData,
suggestedActionsScrollable: true
});
</script>
In this article