我在 Sencha Touch 2 中有一个字段集,如下所示:
{
id:'contactForm',
xtype: 'fieldset',
title: 'Information',
items: [
{
xtype: 'textfield',
label: 'First Name',
placeHolder: 'Your First Name',
name:'firstName',
id:'firstName',
},
{
xtype: 'textfield',
label: 'Last Name',
placeHolder: 'Your Last Name',
name:'lastName'
},
{
xtype: 'emailfield',
label: 'Email',
placeHolder: 'email@example.com'
},
{
xtype: 'button',
height: 37,
style: 'margin-left:35%',
width: 100,
iconAlign: 'center',
text: 'Submit',
action:'ContactSubmit'
},
{
xtype: 'hiddenfield',
id: 'HNumberOfBedRoom',
value:'2'
},
{
xtype: 'hiddenfield',
id: 'HPetFriendlyId',
value:'2'
}
]
}
在我的控制器中,我有以下内容:
refs: {
contactForm: '#contactForm'
}
我可以通过使用检索值
var frmItems=this.getContactForm().getItems();
console.log(frmItems.items[1]._value);
这工作正常,但我想检索类似的值
frm.get('name/id of component')
有没有办法做到这一点?