I use an in-line editing Grid. On one column I have defined a tooltip like so:
*Template to define the tooltip and it's anchor, the reference to the directive in the grid and the template associated to it as well as the mouseover event that calls the tooltip.
*This ios the column where the tooltip needs to be displayed
*This is the showTooltip method that allows the correct cells to trigger the display of the tooltip template on its anchor.
This works when the cell contains a value, however the cell is empty by default and since it's empty there is no style attribute to the cell until it contains a value so the tooltip is never displayed when the cell is empty.
I've tried applying an id to the column, to wrap it in a div with an id but they are always empty. I cannot target the cell using something other than the classList which is null when the cell is empty.
How can I identify the correct cell despite being empty to show the tooltip?
How can I have custom text for different cells?
Why is it so complicated to just implement a simple tooltip? Wouldn't be easy if there were a tooltip directive built-in to the grid i.e. [tooltiptext]="''Simple Tooltip"
Please refrain from using jQuery I am unfamiliar with its syntax and am using the Angular version of Kendo.
**This project is on Angular 17.2 and uses the Kendo 15.1 Libraries. I am aware there is a new version but it breaks all our theme variables.