Long text breaks under icon instead left aligned with text
Opened this issue · 1 comments
kevlin79 commented
aviqbaihaqy commented
hai,
you can try with css:
td.treegrid-column {
display: flex !important;
}
.treegrid-text {
width: 100%;
}
treegrid class:
data-class="treegrid-column"
formatter:
function nameFormatter(value, row, index) {
return `<span class="treegrid-text">${value}</span>`
}