maxazan / jquery-treegrid

TreeGrid plugin for jQuery
http://maxazan.github.io/jquery-treegrid
MIT License
553 stars 222 forks source link

Long text breaks under icon instead left aligned with text #78

Open kevlin79 opened 3 years ago

kevlin79 commented 3 years ago

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

Jquery-treegrid_basic_example
aviqbaihaqy commented 1 year ago

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