jquery-treegrid icon indicating copy to clipboard operation
jquery-treegrid copied to clipboard

Long text breaks under icon instead left aligned with text

Open kevlin79 opened this issue 3 years ago • 1 comments

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

kevlin79 avatar Sep 12 '21 06:09 kevlin79

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

aviqbaihaqy avatar Jan 06 '23 14:01 aviqbaihaqy