toolbar.buttons.name String
Defines the name of 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>