Text Editor (Radzen)

Value Type Saved: String

There are now two rich text editors in ZauberCMS, TinyMCE and Radzen Rich Text editor. The Radzen editor is the most simple and has no configuration settings and no need for an API key

Radzen RTE

Example of getting value on page

@((MarkupString)(Content!.GetValue<string>("PropertyAliasHere") ?? string.Empty))

We have to use the (MarkupString) on HTML content in Blazor

Last updated