2

is there a way to utilize treepanel and display multiline data in cell ? I am using column's renderer to format data in <table> element (2-3 rows) and display it in cell.

Best regards kkris1983

kkris1983
  • 471
  • 1
  • 7
  • 15

1 Answers1

2

So just do

.x-grid-cell-inner {
    height: auto !important;
    white-space: normal !important;
}

and it will work perfectly on the embedded table.

o_nix
  • 1,146
  • 1
  • 16
  • 30
  • 1
    Treecolumn class would have been extended to display properly dot-lines. But anyway I will accept it as a solution. Thank You. – kkris1983 Jun 26 '12 at 12:52