toolbar.toggleable Boolean (default: false)

Enables or disables the toggleable behavior of the toolbar.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    toolbar: {
        toggleable: true,
        buttons: [
            { name: "ButtonA", attr: { "class": "myClass" } },
            { name: "ButtonB", attr: { "class": "myClass" } }
        ]
    }
});
</script>
In this article