フォームパネルに多くのフィールドコンテナがあります。パネル全体ではなく、1 つのフィールド コンテナのみをリセットしたい。しかし、私はこれを行うことはできません。どうすればできますか?ここに私のコードがあります
Ext.define(Fsl.app.getAbsView('V01T007001X04'), {
extend : 'Ext.form.Panel',
alias : Fsl.app.getAlias('V01T007001X04'),
id : 'V01T007001X04'.toLowerCase(),
margin : '0 0 0 0',
initComponent : function(){
this.items =[{
xtype : 'fieldcontainer',
layout : 'vbox',
items :[{
items : [{
xtype : 'fieldcontainer',
layout : 'vbox',
margin : '5 5 0 5',
items : [
{
xtype : 'numberfield',
fieldLabel : 'InvoiceNo',
name : 'invoiceId',
}]
},
{
xtype : 'fieldcontainer',
layout : 'vbox',
margin : '5 0 0 10',
items: [{
xtype : 'datefield',
name : 'date',
fieldLabel : 'Date'
}]
},{
xtype : 'fieldcontainer',
layout : 'vbox',
margin : '5 0 0 10',
items: [{
xtype : 'textfield',
name : 'branchId',
fieldLabel : 'Branch Id',
}]
}]
}]
},{
xtype : 'fieldcontainer',
combineErrors : true,
layout : 'hbox',
items: [{
xtype : 'numberfield',
fieldLabel : 'Article Id',
name : 'articleId',
}]
}];
this.callParent(arguments);
}
});