1

フォーラムで同様の問題を見つけるために調べました。

ボタン グループがオーバーフロー内のコンポーネントにある場合、オーバーフロー ボタンが 2 回機能しません。

これはまだ修正されていますか?

ツールバーのコード スニペットは次のようになります。

           {
                id: 'mypanel',
                xtype: 'panel',
                autoScroll: true,
                region: 'center',
                layout: 'border',
                dockedItems:[{
                    xtype: 'toolbar',
                    dock: 'top',
                    enableOverflow: true,
                    items:[
                        {

                            xtype: 'buttongroup',
                            region: 'north',
                           // minHeight: 50,
                            //autoScroll: true,
                            items:  getButtons4()
                        },
                        {

                            xtype: 'buttongroup',
                            region: 'north',
                           // minHeight: 70,
                            //autoScroll: true,
                            items:  getButtons3()
                        },
                        {

                            xtype: 'buttongroup',
                            region: 'north',
                            //minHeight: 70,
                            //autoScroll: true,
                            items:  getButtons1()
                        },
                        {

                            xtype: 'buttongroup',
                            region: 'north',
                            //minHeight: 70,
                            //autoScroll: true,
                            items:  getButtons2()
                        },
                        {

                            xtype: 'buttongroup',
                            region: 'north',
                            title: 'Others',
                            //minHeight: 70,
                            //autoScroll: true,
                            items:  getOtherButtons()
                        }
                    ]
                }],
                items: [
                    {
                        xtype: 'tabpanel',
                        id: 'mytabpanel',
                        activeTab: 0,
                        layout: 'fit',
                        region: 'center',
                        disabled: 'true',
                        items:[
                            {

                                xtype: 'gridpanel',
                                height : '80%',
                                width : '100%'
                            },
                            {

                                xtype: 'gridpanel',
                                height : '80%',
                                width : '100%'
                            }
                        ]
                    }
                ]
            }
4

1 に答える 1

1

次のコードを置き換えます。

enableOverflow: true

私の次のコードで:

layout: {overflowHandler: 'Menu'}

于 2014-02-10T03:14:34.427 に答える