New to Kendo UI for jQueryStart a free 30-day trial

IsTypingField

configuration

Specifies the field name in the data source that indicates whether a message is currently being typed.

Default: "isTyping"

<div id="chat"></div>
<script>
let messagesData = [
    {
        id: 1,
        text: "This message was removed",
        authorId: "user1",
        authorName: "John",
        typing: true,
        timestamp: new Date()
    }
];

$("#chat").kendoChat({
    isTypingField: "typing",
    dataSource: messagesData
});
</script>
Not finding the help you need?
Contact Support