我在 sencha 中有一个切换字段,如下所示
{
xtype: 'togglefield',
name: 'pushnotifications',
id: 'pushnotifications',
label: 'Enable Push Notifications?',
labelWidth: '40%',
height: '100%',
listeners: {
change: function(field, thumb, enabled) {
alert('sss');
}
}
}
问题是事件“更改”仅在拖动切换按钮时有效,而在单击更改时无效。即使单击,我如何才能让侦听器工作?还有其他我错过的事件吗?