Mouse responsiveness issue in DataGridView after quick filtering – seeking assistance

Hello, I am using a DataGridView with filters, and I have noticed that if I click too quickly or if I type quickly after filtering a field, the mouse becomes unresponsive and stops working. However, the application continues to run smoothly and functions well with the keyboard.

I would like assistance in understanding and resolving this issue. Has anyone else experienced a similar problem? Any suggestions on how to address this would be greatly appreciated.

Thank you!

Can you post some of our examples where this can be reproduced?

Here is a brief video showcasing an issue in the program. I believe it can be replicated in a grid with simple filters like the one shown. I'm unsure if it's related to the grid still loading the filtered data and encountering a minor bug when a mouse click happens simultaneously. The mouse then seems to enter a loop, moving but no longer allowing further clicks.

Sounds like something related to your app only since I'm unable to reproduce it here:

Check if there are errors in your browser console.

An important note: I'm using the grid in a Maui Blazor application. Indeed, when testing here, I cannot simulate the same error. However, it's worth mentioning that the grid has much less data and filters much more quickly than the one I'm currently working with.

You might need to enable virtualization and set height if you need maximum performance.

I've tried, but I'm still getting the same result.

Can you post your grid settings to check how you've enabled virtualization?

<RadzenDataGrid AllowRowSelectOnRowClick="@allowRowSelectOnRowClick" AllowPaging="true" AllowFiltering="true"
FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" EditMode="DataGridEditMode.Single" LogicalFilterOperator="LogicalFilterOperator.And" FilterMode="FilterMode.Simple"
@bind-Value=@selectedEmployees PageSize="20" AllowSorting="true" AllowColumnResize="true" AllowVirtualization="true" Style="height:1000px" ColumnWidth="150px">

Looks OK to me, I'm afraid that I don't have any other ideas.

Okay, I appreciate it. I'll see if I can figure something out. Thank you for the assistance.