jquery-treegrid
jquery-treegrid copied to clipboard
Long text breaks under icon instead left aligned with text
Se attached image. Is it possible to left align long text?
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>`
}