removeTypingIndicator

Removes the typing indicator bubble from the chat. If a typing indicator is rendered for multiple users, removeTypingIndicator will remove the entire bubble.

Example

<div id="chat"></div>
<script>
    $("#chat").kendoChat();

    var chat = $("#chat").data("kendoChat");

    chat.renderUserTypingIndicator({ id: "user-1", name: "User 1" });
    chat.renderUserTypingIndicator({ id: "user-2", name: "User 2" });
    chat.removeTypingIndicator(chat.getUser());
</script>
In this article