tags:

views:

12

answers:

1

I have a grid with rows that can have same value in NumRow field

example : 4 records with the same field : 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

  1. RowSelectionModel : singleSelect :true

  2. Ext.data.GroupingStore1.

  3. Ext.grid.EditorGridPanel

    the GridView :

var gridView = new Ext.grid.GridView({ showPreview: false, enableRowBody: true })

+1  A: 

Shouldn't you be using GroupingView with a GroupStore?

Lloyd