I am using KTUI/ Metronic with angular. I am wrapping a ktui element in a component to better use it with angular. Now I want to init() it. My current solution:
ngAfterViewInit() {
KTTooltip.init();
}
This works. The issue I have is, that I now initialize every Tooltip which is currently visible. Not really what I want. Can I address one single Tooltip/select/... and just initialize this?