我在Sencha Touch 2中有一个文本字段和一个按钮。我想在按下按钮时获取文本字段的输入。我用 Ext.ComponentQuery 试过,但没有用。有人举个例子怎么做?
{
xtype: 'textfield',
cls: 'inputfields',
id: 'title',
},
{
xtype: 'button',
ui: 'action',
name: 'textfieldButton',
handler : function(){
// what should go here ?
}
}