messages.selfMessageDeletedString
(default: "You removed this message.")
The text displayed when the user deletes their own message.
Example
<div id="chat"></div>
<script>
let messagesData = [
{
id: 1,
text: "Delete this message to see the selfMessageDeleted property.",
authorId: "user",
authorName: "Current User",
timestamp: new Date(2026, 0, 1, 9, 0)
}
];
$("#chat").kendoChat({
messages: {
selfMessageDeleted: "You deleted this message."
},
authorId: "user",
dataSource: messagesData
});
</script>
In this article