renderUserTypingIndicator

Renders the typing indicator for the specified user inside the chat. If a Chat indicator is already rendered, renderUserTypingIndicator will add the user to 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())
</script>
In this article