New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnTypingEnd

The OnTypingEnd client-side event fires when the user clears the chat message box, signaling that he stopped typing. The event is also triggered when the user submits the currently typed message in the message box input. Equal to the typingEnd event of the underlying Kendo UI Chat widget.

The event handler receives two parameters:

  1. The Chat instance firing the event.
  2. An object with the following methods:
    1. get_sender() - the Kendo UI Chat widget instance which fired the event;
<script type="text/javascript">
    function onTypingEnd(sender, args) {
        var chat = sender;     
    }
</script>
<telerik:RadChat runat="server" ID="RadChat1">
    <ClientEvents OnTypingEnd="onTypingEnd" />
</telerik:RadChat>

See Also

In this article