Hello,
I have this example:
https://stackblitz.com/edit/angular-te7dtt-8jnpsk?file=app%2Fapp.component.ts
It seems like kendoTooltip selector of TooltipDirective can only be declared once per view.
Let's say you have two <div> element. If you declare a kendoTooltip in each of those <div> elements, it will only work for the first grid.
1- Is TooltipDirective static/singleton? cannot be instantiated multiple times?
2- How can you use kendoTooltip in multiple html elements so that TooltipDirective.show() can work on all those html elements, and not only the first one where kendoTooltip is declared?
Thank you!