Here's an issue I have with grids. My users generally want wrapping similar to a raw html table. The solution to this is well documented in the Grid FAQ for Ext 3.
Code:
<style type="text/css">
.x-grid3-cell-inner, .x-grid3-hd-inner { white-space:normal !important; }
</style>
It seems that grid css has changed. To get cells to wrap I can use x-grid-cell-inner instead. I do have apps where it was useful to have the headers wrap, though. Is there any way to achieve this in 4? I was hoping I could change x-column-header-inner, but this didn't appear to work.