Skclusive.Material.Component
Skclusive.Material.Component copied to clipboard
TableCell short text
Is there a solution to short a text in a tabelcell with ... if the text is to long?
i want only a single line in the tablecell
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;
}