suggestionsLayoutModeString(default: "scroll")
Layout mode for message box suggestions. Supported values:
"scroll": Suggestions are scrollable horizontally"wrap": Suggestions wrap to multiple lines"scrollbuttons": Scrollable with navigation buttons
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
suggestionsLayoutMode: "wrap",
suggestions: [
{ text: "Option 1" },
{ text: "Option 2" },
{ text: "Option 3" }
],
authorId: "user"
});
</script>