I have several DataGrid's and I've made columns with buttons and other columns with tooltip on hover capability. It was all working until the .NET 8 updates. Did I miss something I need to update for them to work properly? Here's the current behavior:
But the second I try to hover and the tool tip fires the whole DataGrid goes empty:
The tooltip pops up at the same time but it's in the very top left of the web browser:
I haven't changed anything on these pages recently, just updated Radzen and this behavior began. Here's the relevant Icon in the RadzenDataGridColumn Template:
We are not aware of such issue. Please try to replicate it in some of our demos (they are editable) or prepare for us runnable example demonstrating the problem.
Your DataGrid also have both Data and Count set however you are not using LoadData and because of this the DataGrid will bind itself in the initial render and immediately reload to no records since the Count is 0. Here is how the DataGrid (and the tooltips) will looks like when you remove Count:
By the way, thank you! I updated all my tables to properly use LoadData instead of manually handling the calls, and kept the Count and Data fields and the problem is indeed resolved. I appreciate your prompt responses!