以下のようにsenchaにトグルフィールドがあります
{
xtype: 'togglefield',
name: 'pushnotifications',
id: 'pushnotifications',
label: 'Enable Push Notifications?',
labelWidth: '40%',
height: '100%',
listeners: {
change: function(field, thumb, enabled) {
alert('sss');
}
}
}
問題は、イベント 'change' が、トグル ボタンがドラッグされたときにのみ機能し、クリックして変更されたときに機能しないことです。クリックしてもリスナーを動作させるにはどうすればよいですか?他に見逃しているイベントはありますか?