Back when I used Kendo for jQuery, I was able to add Grid.kendoTooltip({ ... }).data("kendoTooltip");
with:
tipContent = "<div ><object data='" + e.target.context.href + "' type='application/" + tipAppType + "' width='" + tipWidth + "px' height='" + tipHeight + "px'>"
"</object></div>"
and it would show the href ed file of the current Grid cell (or row) .
I am tring to do the same with Kendo React (with hooks)
I now know that the <Grid /> needs to be nested inside the <Tooltip /> and not the <Tooltip /> inside a cell.
Can someone publish an example how to do that?
Thanks