How to Disable RadzenDataGrid Tooltips

Hi,

Using RadzenDataGrid, when I hover over a cell that has a EditTemplate with a RadzenTextBox, it currently shows a tooltip that displays the text in that box. I would like to disable that as I do not want the tooltip to show. As well as it seems its bugged, in that when you drag the window around, that tooltip appears in the same position it was originally rather than where the mouse is.

Any help would be greatly appreciated.

Not sure what browser you are using however these are plain browser tooltips from title attribute in the span that holds the cell data:

With the following CSS the browser will not show the tooltip for the data cells:

.rz-cell-data {
    pointer-events: none;
}

Hi Enchev, I am actually using .NET Maui with Blazor so it is a desktop application.

This is an image of the tooltip that appears when I hover over a cell. I am using RadzenDataGrid with in-line editing using an EditTemplate.

Using pointer-events:none does make the tooltip appear, but then I am unable to click into the element to change the text.
Is there another solution or direction you can point me towards?

Thanks,
Chris

It will be possible to disable this at DataGrid level in the next update early next week:

That's awesome, thank you Enchev. For now, I actually found a solution by just adding a Template section before the EditTemplate, but that will definitely be a better and cleaner solution.

Thanks,
Chris