eugenparaschiv
1 Sep 2008, 1:45 AM
I'm going to post this here even though it's not really a question and more like a solution; I've been trying to make the cell of a grid word wrap the text inside of it; there are no answers for this inside the GXT forums, but the question seems to have come up on the EXT JS forums quite a lot; the simple answer for the whole grid is this: the style of the grid must be overridden like this:
.x-grid3-cell-inner {
white-space: normal /* possibly ! important here */;
}
This solves the problem.
There probably is a way (there was one in the EXT JS forums) to activate this on a single cell rather than on the same grid, but I didn't do it in my project, so...
.x-grid3-cell-inner {
white-space: normal /* possibly ! important here */;
}
This solves the problem.
There probably is a way (there was one in the EXT JS forums) to activate this on a single cell rather than on the same grid, but I didn't do it in my project, so...