Search code examples
extjsgridpanel

How to delete scroll in grouping


I use extJs 4.2.1 gridpanel with grouping feature in my form.

features: [
    {
        ftype: 'grouping',
        groupHeaderTpl: '<b>{[values.children[0].data.typeName]}</b>',
        hideGroupedHeader: false,
        collapsible : false,
        startCollapsed: false,
        id: 'directorInfoGroupping'
    }
],

I have scroll(look at image) in buttom of my gridpanel, how I can delete or hide it?

enter image description here


Solution

  • I find gridpanel property 'scroll':

    scroll : String/Boolean
    Scrollers configuration. Valid values are 'both', 'horizontal' or 'vertical'. True implies 'both'. False implies 'none'.
    

    It helps me :)