这是我用来在基于 sencha 的应用程序中显示切换按钮的代码。
{
xtype: 'togglefield',
name: 'awesome',
value: 1,
label: 'Enable on startup?',
labelWidth: '60%',
value: false,
listeners: {
change: function(slider, thumb, newValue, oldValue) {
if (this.isDisabled() == false)
{
App.gvars.enablestatus='N';
}
else
{
this.enable();
App.gvars.enablestatus='Y';
}
}
}
}
如何从其他方法更改上述切换字段的状态/值。请帮我解决这个问题