I want to make a grid panel with grouping feature in Netzke. But grouping feature is not enabled on my grid panel.
This is my component code.
class MyGrid < Netzke::Basepack::GridPanel
js_mixin
def configuration
super.merge({
:model => SomeModel.name,
:columns => [
{:name => :some_field}
]
})
end
end
And javascript code.
{
groupingFeature: Ext.create('Ext.grid.feature.Grouping', {
groupHeaderTpl: 'Header',
startCollapsed: true
}),
initComponent: function() {
this.features = [this.groupingFeature];
this.callParent();
this.store.groupField = 'some_field';
}
}