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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes
The blazor methods has improper return types. Correct these types with Blazor source.

For example,

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));

    }