Hey all, I'm trying to update Articulate to v10 and have been out of the loop for some time. But have an issue with Rich Text. In my C# Model, I am doing this to extract the value from the RTE editor:
public IHtmlEncodedString Body
{
get
{
if (this.HasProperty("richText"))
{
return this.Value
("richText");
}
But rendering this in a View, shows raw encoded HTML. This is different from before where the RTE would return HtmlString. So seems I would need to render this with new HtmlString(....) ?