I'm using GXT 2.2.5

I wonder how can I make neat word wrap in TreeGrid. I've found that i should give whitespace: normal to make text wraped. But then i have ran into bad left margin issue as you can see in attached image.

Any ideas?

Thanks in advance :)

enter image description here

link|improve this question

60% accept rate
feedback

2 Answers

I have an another idea. Instead of making text flow in multiple lines, you can show a fixed number of characters of the text followed by ellipsis. You can use the following styles to achieve this:

   white-space:nowrap;
   overflow:hidden;
   text-overflow:ellipsis;
link|improve this answer
unfortunately our customer demands displaying complete node names, so truncating even with ellipsis is not an option. but thanks for reply! – denu Jan 7 at 23:19
If you provide a simple working prototype, then it will be helpful for us to come up a solution. – Ganesh Kumar Jan 8 at 12:45
sure, try this from sencha's example page ( sencha.com/examples/#basictreegrid ) expand Beethoven -> Symphonies, shrink Name column to make it to narrow for track names. Greetz :) – denu Apr 6 at 7:54
feedback

Try along with whitespace: normal, add this to your css

.x-grid3-row {
height: auto !important;
}
link|improve this answer
didn't work unfortunately, lines are wrapped, only top of wrapped letters are visible and they're still panned all to the left, while it should be under the beggining of frirst line, but thanks for answering! appreciate this – denu Apr 6 at 7:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.