I want to display all of the words in GridPanel, but it always display ellipsis, like this:
Code:NO. apples... msn...
1 many... 20%
2 so ... 93.2...
Printable View
I want to display all of the words in GridPanel, but it always display ellipsis, like this:
Code:NO. apples... msn...
1 many... 20%
2 so ... 93.2...
I'm pretty sure your code is responsible for that.
Displaying ellipsis is not the default behaviour of gxt...
And without seeing your code, we cannot tell you where you are doing it.
in gxt-all.css
You may override some CSS style in order to not automatically "ellipsize" your wordsCode:.x-grid3-cell-inner,.x-grid3-hd-inner {
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
padding: 3px 3px 3px 5px;
white-space: nowrap;
}
So do you mean we should remove ellipsis..