Question

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?

Was it helpful?

Solution

I think you're looking for the PivotGrid.

Example here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top