Extjs4.0 如何在form中添加一个按钮,每次被按下就添加一个输入框,并可以一直添加下去,求例程。

Ext.ns("cryp");

cryp.FormButton = Ext.extend(Ext.form.FormPanel,{

constructor : function(){

function add(){

var formPanel = Ext.getCmp("crypFormButtonId");

formPanel.add(new Ext.form.TextField({

fieldLabel : 'test'

}));

formPanel.doLayout();

}

cryp.FormButton.superclass.constructor.call(this,{

title : 'formTest',

id : 'crypFormButtonId',

tbar : [{

xtype : 'button',

text : '添加',

handler : add

}]

})

}

});