重新排序ExtJS面板的子面板

时间:2012-06-01 12:26:33

标签: extjs2

我有一个ExtJS面板,在第一行和第二行包含一个标签。后来我添加了4个子面板,每个子面板包含一个复选框和2个文本字段(主面板中的每个子面板)。然后我有2个上移/下移按钮,每按一次上/下按钮,这些子面板上/下重新排序1行。我可以使用所有子面板布局主面板,但仍然重新排序子面板。如何在ExtJS中处理这个(重新排序子面板)功能?enter image description here

1 个答案:

答案 0 :(得分:2)

动态更改面板元素的技巧是在更改后调用doLayout函数。 不是最漂亮,而是你的问题的实例:

var Panel1 = Ext.create('Ext.form.Panel', {
    title: 'first',
    items: [{
        fieldLabel: 'text1',
        xtype: 'textfield'
    }, {
        fieldLabel: 'text2',
        xtype: 'textfield'
    }, {
        xtype: 'checkbox'
    }]
})

var Panel2 = Ext.create('Ext.form.Panel', {
    title: 'second',
    items: [{
        fieldLabel: 'text1',
        xtype: 'textfield'},
    {
        fieldLabel: 'text2',
        xtype: 'textfield'}]
})

var mainPanel = Ext.create('Ext.panel.Panel', {
    title: 'main',
    items: [Panel1, Panel2]
})

new Ext.Window({
    width: 300,
    height: 400,
    layout: 'fit',
    items: [mainPanel],
    bbar: [{
        text: 'reorder',
        handler: function() {
            var swap = mainPanel.items.items[0];
            mainPanel.items.items[0] = mainPanel.items.items[1];
            mainPanel.items.items[1] = swap;
            mainPanel.doLayout();
        }
    }]
}).show();

这适用于ExtJs 4.0.7,但技巧适用于早期版本,只需调整面板创建语法。