At this stage, the Telerik UI for ASP.NET Core Notification allows setting arbitrary templates via the NotificationTemplateTagHelper. Despite the API documentation implying that the TagHelper can be nested, the following configuration:
<kendo-notification name="notifications" stacking="NotificationStackingSettings.Down" auto-hide-after="2500">
...
<templates>
<notification-template type="error">
<notification-template>
<p>Some Template</p>
</notification-template>
</notification-template>
</templates>
</kendo-notification>
It does not successfully serialize the Template TagHelper.
success
type is not serialized.The NotificationTemplateTagHelper does not serialize successfully the TemplateTagHelper.
The NotificationTemplateTagHelper should successfully serialize the TemplateTagHelper.