以下のような sencha touch パスワード フィールドがあります。
xtype : 'passwordfield',
id : 'password',
name: 'password',
label : 'Password',
labelWidth : '40%',
このフィールドの値を取得したい。getValue() メソッドを使ってみました。しかし、それは私にnull値を返しています。
コントローラーで:
merchantPwd : '#password',
そして、このように:
var pwd = this.getMerchantPwd().getValue();
alert("password:" +pwd);
助けてください..