Tooltip doesn't open after closing it

HI,

I'm currently working in an angular project, and I have a problem. I use the tooltip in a dropdownlist. When I select an item from the dropdownlist, the tooltip doesn't hide. In order to fixed this I did the following:

<ejs-dropdownlist #tipoDeIdentificacion [dataSource]="listaProveedoresTipoDeIdentificacion" [fields]="{text: 'nombre', value: 'id'}"
                    [value]="proveedores.id_tipo_de_identificacion" floatLabelType="Auto" sortOrder="Ascending"
                    (close)='showTipoDeIdentificacionTooltip=false;' (open)="showTipoDeIdentificacionTooltip = true;"
                    placeholder="Tipo de identificacion" (change)="cambiarTipoDeIdentificacion($event)"
                    [allowFiltering]='true' (filtering)="onDropdownlistFiltering($event, 'tipoDeIdentificacion')"
                    [showClearButton]="true">
                    <ng-template #itemTemplate let-data>
                        <ejs-tooltip #tipoDeIdentificacionTooltip *ngIf="showTipoDeIdentificacionTooltip" [content]="data.nombre"><div style="display: flex;">{{data.nombre}}</div></ejs-tooltip>
                    </ng-template>
                </ejs-dropdownlist>

But, despite It works, this happens: the tooltip doesn't appear once I open the dropdownlist again.

Thank you.


1 Reply

PM Prasanth Madhaiyan Syncfusion Team July 17, 2023 11:52 AM UTC

Hi David,


Greetings from Syncfusion support.


We have validated your reported query in the Angular Tooltip component using the shared details. We understand that you want to show the Tooltip for the Dropdown List items at your end. However, when you close the Dropdown List and reopen it, the Tooltip doesn't work.


We have already addressed this issue and provided a solution in the attached forum below for your reference.


https://www.syncfusion.com/forums/166535/tooltip-shows-only-once


Check out the shared details and let us know if you need any further assistance.


Regards,

Prasanth Madhaiyan.


Loader.
Up arrow icon