[Solved] Debug with a breakpoint in the OnUpdate handler leaves the grid unresponsive after a continue...

1 Answer 25 Views
Grid
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Rob asked on 04 Mar 2026, 09:13 PM | edited on 04 Mar 2026, 09:16 PM

If I place a breakpoint in the OnUpdate handler (async) in a grid, spend about 20 seconds inspecting values (no code changes, just looking at values) and then "continue" I get the following:

The grid is now completely unresponsive ... it doesn't continue execution and I have to basically stop execution from VS 2026.  Having to return a test session every time I debug is INCREDIBLY time consuming ... there must be a better way to debug?

 

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 09 Mar 2026, 08:42 AM

Hello Rob,

You can increase the Blazor SignalR timeout period or just refresh the web page in the browser. In ether case, there is no need to restart the whole app.

Regards,
Dimo
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
commented on 09 Mar 2026, 03:18 PM

Hi Dimo,

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddSignalR(options => { options.ClientTimeoutInterval = TimeSpan.FromSeconds(60 * 60); }); // 60 minutes });
builder.Services.AddServerSideBlazor().AddHubOptions(options =>
{
    options.ClientTimeoutInterval = TimeSpan.FromSeconds(60 * 60);
    options.HandshakeTimeout = TimeSpan.FromSeconds(60 * 30);
});

I must be missing something because I already have this in my program.cs:

This is a Blazor-Server app.

Tried different values and it makes no difference at all.  Thoughts?

Rob

Dimo
Telerik team
commented on 10 Mar 2026, 06:55 AM

Hi Rob,

Not my area of expertize, but I am not sure our configurations are equivalent. Notice the withServerTimeout setting, which I used. I don't see a counter-part in the available middleware API.

Tags
Grid
Asked by
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Answers by
Dimo
Telerik team
Share this question
or