New to Kendo UI for Angular? Start a free 30-day trial
ChatUserStatusTemplateDirective
Updated on Oct 31, 2025
Defines a template for displaying user status in the Chat.
To define a user status template, nest an <ng-template> tag with the kendoChatUserStatusTemplate directive inside the <kendo-chat> component.
For more information, refer to the article on message templates.
html
<kendo-chat>
<ng-template kendoChatUserStatusTemplate let-status>
<div>{{ status }}</div>
</ng-template>
</kendo-chat>
Selector
[kendoChatUserStatusTemplate]