I have a grid with rows that can have same value in NumRow
field
我有一个网格,其行在NumRow字段中可以具有相同的值
example : 4 records with the same field :
示例:具有相同字段的4条记录:
NumRow = 1234
I want to group them all and apply specific style.
我想将它们分组并应用特定的样式。
And if I can brings them grouped after sorting on other fields.
如果我可以在排序其他字段后将它们分组。
infos : I am using
信息:我正在使用
-
RowSelectionModel :
singleSelect :true
RowSelectionModel:singleSelect:true
-
Ext.data.GroupingStore1
.Ext.data.GroupingStore1。
-
Ext.grid.EditorGridPanel
Ext.grid.EditorGridPanel
The GridView :
GridView:
var gridView = new Ext.grid.GridView({
showPreview: false,
enableRowBody: true
});
1 个解决方案
#1
1
Shouldn't you be using GroupingView with a GroupStore?
你不应该将GroupingView与GroupStore一起使用吗?
- http://dev.sencha.com/deploy/dev/docs/?class=Ext.grid.GroupingView
- http://dev.sencha.com/deploy/dev/docs/?class=Ext.grid.GroupingView
#1
1
Shouldn't you be using GroupingView with a GroupStore?
你不应该将GroupingView与GroupStore一起使用吗?
- http://dev.sencha.com/deploy/dev/docs/?class=Ext.grid.GroupingView
- http://dev.sencha.com/deploy/dev/docs/?class=Ext.grid.GroupingView