Hi Tom Corrigan,
Thanks for the update.
We have validated your reported scenario
“SyncFusion Blazor Schedular spinner keeps spinning” at our side and we suspect that you have rendered the more number of appointments in the Scheduler, it could be the cause for the reported problem. And we let you know that the Blazor application uses SignalR connection to manage communication between the server and client. By default, SingalR limits the
buffer size to 32 KB. So increase the buffer size of the blazor application to render large number of appointments. To increase the connection buffer size, set the MaximumReceiveMessageSize property shown below in the
startup.cs file within
(ConfigureServices) method. And we would suggest you to upgrade our latest version and check it at your side whether the problem has occurred or not.
services.AddServerSideBlazor().AddHubOptions(o => { o.MaximumReceiveMessageSize = 102400000; }); |
Kindly try the above solution and let us know if this is helpful.
Regards,
Balasubramanian S