Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Rich Text Editor getHtml method’s return type is string but in Blazor source the type is returned as void.
Rich Text Editor source:
/**
* Retrieves the HTML from RichTextEditor.
* @public
*/
public getHtml(): string {
return this.value;
}
Blazor Rich Text Editor Source code:
/// <summary>
/// Retrieves the HTML from RichTextEditor.
/// </summary>
public void GetHtml() {
EJSIntrop.Invoke(this.jsRuntime ,this.ID, "getHtml", null, this.NameSpace, new DotNetObjectRef(this));
}