typingEnd

Fires when the user clears the chat message box which signals that the user has stopped typing. The event is also triggered when the user submits the currently typed in message.

Event Data

e.sender kendo.ui.Chat

The widget instance which fired the event.

Example - subscribing to the typingEnd event during initialization

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    typingEnd: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("End typing");
    }
});
</script>

Example - subscribing to the typingEnd event after initialization

<div id="chat"></div>
<script>
function chat_typingEnd(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log("End typing");
}
$("#chat").kendoChat();

var chat = $("#chat").data("kendoChat");
chat.bind("typingEnd", chat_typingEnd);
</script>
In this article