重新调整面板组件的大小以适应屏幕尺寸

时间:2012-07-20 15:54:37

标签: extjs4 extjs4.1

我添加了Panel(我称之为My Panel 1),以及此panel中的另一个panel(我称之为My Panel 2),然后在第二个面板中添加了一个网格(到My Panel 2)。当我单击浏览器的Restore Downre-sizing按钮时,它不会缩小组件以适合屏幕大小。我该如何解决这个问题?

Ext.define('MyApp.view.MyPanel', {
    extend: 'Ext.panel.Panel',

    height: 469,
    width: 729,
    title: 'My Panel 1',

    initComponent: function () {
        var me = this;

        Ext.applyIf(me, {
            items: [{
                xtype: 'panel',
                height: 238,
                title: 'My Panel 2',
                items: [{
                    xtype: 'gridpanel',
                    height: 179,
                    title: 'My Grid Panel 1',
                    columns: [{
                        xtype: 'gridcolumn',
                        dataIndex: 'string',
                        text: 'String'
                    }, {
                        xtype: 'numbercolumn',
                        dataIndex: 'number',
                        text: 'Number'
                    }, {
                        xtype: 'datecolumn',
                        dataIndex: 'date',
                        text: 'Date'
                    }, {
                        xtype: 'booleancolumn',
                        dataIndex: 'bool',
                        text: 'Boolean'
                    }],
                    viewConfig: {

                    }
                }]
            }]
        });

        me.callParent(arguments);
    }

});

1 个答案:

答案 0 :(得分:3)

我建议使用视口 - 它会自动调整到浏览器的“视口”:) 如果您希望自动管理它们,也不要设置固定的宽度和高度。 以下是一个示例:http://jsfiddle.net/dbrin/gWaCv/embedded/result/