Format RadzenHtml

Hi,
I used radzenhtmleditor components and when I wrote and bind-value the text is not formatted.
I tried to put @((MarkupString)todo.Description) that doesn't work
Have you an idea how to format the text in this configuration?

<RadzenRow>
    <RadzenColumn Size="12" > 

        <RadzenDataGrid @ref="gridtask" AllowAlternatingRows="false" AllowFiltering="true" AllowPaging="true" PageSize="10" AllowSorting="true"  EditMode="DataGridEditMode.Single" 
                         ExpandMode="DataGridExpandMode.Single" SelectionMode="DataGridSelectionMode.Single" @bind-Value=@selectedDeveloper 
                        Data="@todo" TItem="TodoListModel" RowUpdate="@OnUpdateRow" RowCreate="@OnCreateRow" Sort="@Reset" Page="@Reset" Filter="@Reset">
                  <Template Context="todo">
                      <RadzenHtmlEditor @bind-Value=@todo.Description style="height: 500px; weight : 200px; margin-bottom: 1rem;" UploadUrl="upload/image" />
                   
                  </Template>
           
                       <Columns>

....

That's exactly what you need to do.

I've put @((MarkupString)todo.Description) directly in RadzenHtlm Editor and It doesn't work!

 <RadzenHtmlEditor @bind-Value=@((MarkupString)todo.Description) .... />

You should use that in the Template of the Description column. RadzenHtmlEditor works as expected considering your screenshot.

It's better like that! thanks you