TableCell short text
kevinvenclovas opened this issue · 1 comments
kevinvenclovas commented
skclusive commented
this could be achieved using css. below class could be passed to the <TableCell Class="truncate' />
https://daily-dev-tips.com/posts/css-truncate-text-with-ellipsis/
.truncate {
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}