Hi,
I have a TreeGrid embedded into a SectionStack to get a nice header for the tree. The TreeGrid has only one column/field and is setup as
From scrolling point of view this tree works perfectly when run with smartgwt 3.0 or 3.1. Vertical and horizontal scrollbars appear when needed and especially when tree folders are opened up the grid expands horizontally and allows scrolling to reveal the content which does not fit to the view.
We upgraded to 4.0p and behaviour changed. Now the tree never grows horizontally and the content in the cell is truncated by appending "..." to the end of the content. Basically we don't get the horizontal scroll bar anymore which we prefer. Vertically the scrolling works the same way as in v3.x. Question: How should the treegrid be set up to overflow and allow for horizontal scrolling when the cell content does not fit to the cell anymore ? We tried fiddling with setOverflow, setBodyOverflow, AutoFit et all with no luck.
Using Smartgwt LGPL 4.0p.
br,
Marko
I have a TreeGrid embedded into a SectionStack to get a nice header for the tree. The TreeGrid has only one column/field and is setup as
Code:
... setWidth100(); setFixedFieldWidths(false); ...
We upgraded to 4.0p and behaviour changed. Now the tree never grows horizontally and the content in the cell is truncated by appending "..." to the end of the content. Basically we don't get the horizontal scroll bar anymore which we prefer. Vertically the scrolling works the same way as in v3.x. Question: How should the treegrid be set up to overflow and allow for horizontal scrolling when the cell content does not fit to the cell anymore ? We tried fiddling with setOverflow, setBodyOverflow, AutoFit et all with no luck.
Using Smartgwt LGPL 4.0p.
br,
Marko
Comment