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.