0

在一系列动态形式的接收元素中。在其中一些元素之后,我需要添加插件。ie先去字段等输入,然后自动添加一个新的xtype。尝试过 createChild,但由于某种原因,他对 xtype 发誓。

4

1 回答 1

2
var formPanel = new Ext.form.FormPanel({
    title: 'Test Form',
    labelWidth: 120,
    width: 350,
    padding: 10,
    tbar: [{
        text: 'Add Item',
        handler: function () {
            formPanel.add({
                xtype: 'textfield',
                fieldLabel: 'My TextBox'
            });
            formPanel.doLayout();
        }
    }],
    renderTo: 'output'
});

在这里演示http://ext4all.com/post/extjs-3-how-to-add-a-new-field-dynamically

于 2012-04-21T20:27:14.767 回答