maxazan/jquery-treegrid

Long text breaks under icon instead left aligned with text

Opened this issue · 1 comments

Se attached image. Is it possible to left align long text?
Jquery-treegrid_basic_example

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