skclusive/Skclusive.Material.Component

TableCell short text

kevinvenclovas opened this issue · 1 comments

Is there a solution to short a text in a tabelcell with ... if the text is to long?

image

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;
}