You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user defines a width in the Title column, text-overflow ellipsis should auto kick in showing a [...] following the left out text... And if we wanted to get even spiffier, we could add an overflow to things and allow user to show the full title on hover.
Example below:
title-elementa {
white-space: nowrap;
/*width: 100px; //width will be define by user */overflow: hidden;
text-overflow: ellipsis;
}
title-elementa:hover {
overflow: visible;
z-index:20;
}