I have igx-grid
in which I am using igxTooltip
. When I am hovering on grid cell, and the tooltip is showing, and when I am going to hover on tooltip, it automatically hide. I want to make that to keep tooltip when I am hovering on tooltip and it should hide when mouse it out.
This is I tried.
Html code:
<div *ngIf="column.isTooltip">
//cell of grid
<div class="heightTarget" [igxTooltipTarget]="tooltipRef1">{{ value }}</div>
</div>
<div>
<div #tooltipRef1="tooltip" igxTooltip>
//this is tooltip which is showing
<div class="poiterClass">{{ value }}</div>
</div>
</div>
Css code:
.heightTarget {
width: 130px;
overflow: hidden;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
}
.pointerClass {
display: none;
}
.pointerClass :hover {
display: block;
}