0
votes

I have an extended grid. I need to use grouping, doesn't matter if it's remote or not. Grid behaves like grouping, but doesn't show the collapsible field. Shows anything like no groupin, but can't sorting by other columns.

I have sorters, groupField, features, and

var groupingFeature = Ext.create('Ext.grid.feature.Grouping',{
    groupHeaderTpl: '{columnName}: {name}',
    hideGroupedHeader: true,
    remoteRoot: 'projektname',
    startCollapsed: true
});

Is it a bug?

1
It is a missing setting, Ive run into similar thing and took me a few days to find the missing setting. I could have sworn it was Sencha's bug but it wasn't Do you have features: [groupingFeature], or eatures: [ { ftype: 'grouping', groupHeaderTpl: '{name}', hideGroupedHeader: true, enableGroupingMenu: false } ],Akin Okegbile

1 Answers

0
votes

It is a missing setting, Ive run into similar thing and took me a few days to find the missing setting. I could have sworn it was Sencha's bug but it wasn't

Do you have

features: [groupingFeature],

or

features: [
                        {
                            ftype: 'grouping',
                            groupHeaderTpl: '{name}',
                            hideGroupedHeader: true,
                            enableGroupingMenu: true
                        }
                    ],