Ext.net分组网格
我正在构建一个使用 Ext.NET 控件在网格中显示一些结果的应用程序。 网格是在 C# 代码隐藏中动态创建的。我想让用户在分组网格中查看结果,分组在网格的第一列上。 我想通过更改现有网格,从 C# 动态地执行此操作。
我应该如何进行,我应该使用哪些属性?
I'm building an application that displays some results in a grid, using the Ext.NET controls.
The grid is created dynamically, in the C# code-behind. I would like to let the user see the results in a grouped grid, grouped on the first column in the grid.
I want to do this dynamically, from C#, by changing the existing grid.
How should I proceed, what properties should I use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 GroupingStore
来动态地更改分组,您需要使用此商店的
groupBy
和clearGrouping
方法。这是 sencha 的一个很好的例子 -
Grouping.html (js源代码 - grouping.js)
You need to use GroupingStore
To dynamically change grouping, you need to use this store's
groupBy
andclearGrouping
methods.Here is good example from sencha -
Grouping.html (js source code - grouping.js)
也许以下分组示例可以帮助您入门,请参阅
http://examples.ext。净/#/GridPanel/杂项/分组/
Maybe the following Grouping example can help get you started, see
http://examples.ext.net/#/GridPanel/Miscellaneous/Grouping/