I am facing an issue with displaying an account number that exceeds 100 characters. I need to restrict the display with overflow hidden while still being able to show the full account number using a tooltip.
Below is the code snippet:
<span class="text-ellipsis"
Tooltipcomponent
Tooltipcomponent-with-text-ellipses=yes
Tooltipcomponent-settext = "{account no}">
<Strong float:right col-md-4 text-ellipsis ----------------*
ng-bind = {account no}>
</Strong>
</Span>
Although I have implemented overflow-hidden successfully, I am encountering an issue with the tooltip not being displayed.
*----- Upon removing 'text-ellipsis' from the strong tag, the tooltip becomes visible but the desired overflow hidden effect is lost.
Any guidance on how to resolve this would be greatly appreciated.