Hello Sencha,

I just found an edge case in my program where an eventId could be listed as null. When it is null the store and grid combo no longer display that row. I have narrowed it right down to the fact the eventId is null.


EventId column is of type Int and allowNull: true.


Store: groupField: 'eventId'

Store: groupers: [ Ext.create('Ext.util.Grouper', { property: 'eventId' } ]


Grid: [ ftype: 'grouping' ]

Grid: [ ftype: 'groupingsummary' ]


No combination of the above will show the record in the grid. The funny part is, if you put a ftype: 'summary' after the grid plugin the summary row will display with the correct total even though the row wont display.


To reproduce just make a store with a single record that has a null value for the field being grouped by and watch as the grid will render with no row.