ExtJS 网格面板 - 多“行”每行?
我们有一个 ExtJS 网格面板,它已经增长到包含太多列(imo),所以我正在考虑将一些数据折叠到主行的“子行”中。喜欢:
数据1 |数据2 |数据3 |数据4 |数据5
一些额外的数据跨越
数据1 |数据2 |数据3 |数据4 |数据5
一些额外的数据跨越
我知道expander
插件,但我们不需要展开/折叠功能,并且总是需要打开子行。
有什么想法或想法吗?
提前致谢。
We have an ExtJS Grid Panel that has grown to include too many columns (imo), so I am looking into enfolding some data into "sub-rows" of the main row. Like:
Data1 | Data2 | Data3 | Data4 | Data5
Some additional data that spans
Data1 | Data2 | Data3 | Data4 | Data5
Some additional data that spans
I am aware of the expander
plugin, but we wouldn't need the expand/collapse functionality and always need the sub-rows open.
Any thoughts or ideas?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 ExtJS-4,
如果使用 ExtJS-3,请尝试:
If you're using ExtJS-4,
If using ExtJS-3, try:
您需要做的是使用扩展器插件实现嵌套网格。在单击或展开事件中,您可以使用行的 ID 作为加载子行的键。
What you need to do is implement a nested grid using the expander plugin. On the click or expand event, you can use your row's ID as a key to load the sub-rows.