私はFieldSetを持っています:
Ext.define('admin.view.BuzzEditForm', {
extend: 'Ext.form.Panel',
requires: ['Ext.form.FieldSet','Ext.Img'],
id: 'editorPanel',
xtype: 'buzzEditForm',
config: {
/* modal: true,
hideOnMaskTap: false,
centered: true,
width: 500,
scrollable: false,*/
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name: 'keyword',
label: 'Mots clés'
},
{
xtype: 'textfield',
name: 'title',
label: 'Titre'
},
{
id: 'editorPanelvisual',
xtype: 'field',
label: 'Visuel actuel',
component:
{
xtype: 'container',
layout: 'hbox',
items: [
{
id: 'buzzImageField',
flex: 1,
xtype: 'image',
src: 'http://pierre.chachatelier.fr/programmation/images/mozodojo-original-image.jpg',
height: 200
},
{
id: 'buzzChooseImageField',
xtype: 'button',
iconCls: 'arrow_right',
iconMask: true,
ui: 'action',
action: 'chooseBuzzImage'
}
]
}
},
{
xtype: 'textfield',
name: 'visual',
label: 'Visuel'
}
]
}]
}
});
Ext.getCmp('#editorPanel')を使用してformPanelを取得できますが、その名前を使用してフィールドを取得するにはどうすればよいですか?