clearUserTypingIndicator

Clears the typing indicator for the specified user inside the chat. If a typing indicator is rendered for multiple users, clearUserTypingIndicator will remove the name of the specified user from the typing list.

Parameters

sender Object

The configuration object which contains information about the sender of the typing indicator bubble.

sender.id Object

The unique identifier which is used to distinguish between different users for the typing indicator bubble.

sender.name String

Example

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

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

    chat.renderUserTypingIndicator(chat.getUser())
    chat.clearUserTypingIndicator(chat.getUser())
</script>
In this article