toolbar.scrollable Boolean
(default: true)
Enables or disables the scrollable behavior of the toolbar.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
toolbar: {
scrollable: true,
buttons: [
{ name: "ButtonA", attr: { "class": "myClass" } },
{ name: "ButtonB", attr: { "class": "myClass" } }
]
}
});
</script>