Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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';
  }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.