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

TimestampField

configuration

Specifies the field name in the data source from which the message timestamp will be read.

Default: "timestamp"

<div id="chat"></div>
<script>
let messagesData = [
    {
        id: 1,
        text: "Hello!",
        authorId: "user1",
        authorName: "John",
        createdAt: new Date()
    }
];

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