So right now I have an ExtJS GridPanel that is laid out in the following manner:
|Header 1|Header 2|Header 3|Header4|
|Data 1 |Data 2 |Data 3 |Data 4 |
|Data 1 |Data 2 |Data 3 |Data 4 |
What I should like to do is have it displayed in the following manner:
|Header 1|Data 1|Data 1|
|Header 2|Data 2|Data 2|
|Header 3|Data 3|Data 3|
|Header 4|Data 4|Data 4|
Is there anyway to accomplish this WITHOUT dropping the GridPanel?
I think you're looking for the PivotGrid.
Example here.