Support for Large Copy and Paste

There is a known problem with Blazor when copying and paste a large amount of text into a text area: Server side Blazor + Paste a large amount of text into text area with binding = Disconnection of client


Has this fix been implemented in the Rich Text Editor component?

https://github.com/aspnet/samples/tree/main/samples/aspnetcore/blazor/InputLargeTextArea




1 Reply

VY Vinothkumar Yuvaraj Syncfusion Team June 16, 2023 12:45 PM UTC

Hi Barry,


We would like to inform you that we have used the following code as a workaround solution to increase the maximum receive message size for server-to-client communication. Please take a look at the following code:


builder.Services.AddSignalR(e => { e.MaximumReceiveMessageSize = 102400000; });


Regards,

Vinothkumar


Loader.
Up arrow icon