SenchaTouch2にテキストフィールドとボタンがあります。ボタンを押したときにテキストフィールドの入力を取得したいのですが。Ext.ComponentQueryで試しましたが、機能しませんでした。誰かにそれを行う方法の例がありますか?
{
xtype: 'textfield',
cls: 'inputfields',
id: 'title',
},
{
xtype: 'button',
ui: 'action',
name: 'textfieldButton',
handler : function(){
// what should go here ?
}
}