Hi,
I'm trying to get a card template and a tooltip template to work together but when I try to add a card template while there already is a tooltip template, the tooltips are not displayed anymore.
Each template seems to work fine on it's own, but never together.
Here is the code below. Am I missing something ? Is there any way to make it work ?
Hi Benjamin,
Greetings from Syncfusion support.
We were able to reproduce your reported issue based on your shared code. We let you know that the ‘e-tooltip-text’ class name needs to be added to a customized card element to show the tooltip template content. In your shared code, you are using a card template. So, we suggest including the "e-tooltip-text" class name in the card parent element to show the tooltip. Please find the below code and sample for your reference.
|
<ejs-kanban enableTooltip="true"…> <ng-template #cardSettingsTemplate let-data> <div class="card-template e-tooltip-text"> ……….. </div> </ng-template> </ejs-kanban> |
Sample: https://stackblitz.com/edit/angular-xzqtvy?file=app.component.html
Documentation: https://ej2.syncfusion.com/angular/documentation/kanban/tooltip/
Regards,
Buvana S