messages.placeholder String (default: "Type a message...")

The hint that is displayed in the input textbox of the widget.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    messages: {
        placeholder: "Type here..."
    }
}).data("kendoChat");
</script>
In this article