toolbar.buttons.iconClass String

Defines the icon classes of the span that is rendered in the button.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    toolbar: {
        buttons: [
            { name: "ButtonA", iconClass: "k-icon k-i-gear" },
            { name: "ButtonB", iconClass: "k-icon k-i-gear" }
        ]
    }
});
</script>
In this article