ADefWebserver / ADefWebserver.Module.HtmlTextV2

MIT License
4 stars 1 forks source link

Adds logic for "FocusAsync" from latest Radzen repository #16

Closed thabaum closed 5 months ago

thabaum commented 5 months ago

This will add the FocusAsync task


#if NET5_0_OR_GREATER
        /// <summary>
        /// Sets the focus.
        /// </summary>
        ValueTask FocusAsync();
#endif

Maybe since we are running .NET 8 we don't need the if endif statement?

Merge and remove if desired. This is how it is presented in the Radzen Html Editor repository files. We can modify it as desired if it makes sense.

image