使用具有垂直标题列的 ExtJS 网格
所以现在我有一个 ExtJS GridPanel,它以以下方式布局:
|Header 1|Header 2|Header 3|Header4|
|Data 1 |Data 2 |Data 3 |Data 4 |
|Data 1 |Data 2 |Data 3 |Data 4 |
我想做的是让它以以下方式显示:
|Header 1|Data 1|Data 1|
|Header 2|Data 2|Data 2|
|Header 3|Data 3|Data 3|
|Header 4|Data 4|Data 4|
有没有办法在不删除 GridPanel 的情况下完成此操作?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找 PivotGrid。
示例此处。
I think you're looking for the PivotGrid.
Example here.