我有一个 xtype “复选框”,我想通过动态更改 boxlabel
{
xtype:'checkbox',
id: 'abc',
checked: false,
uncheckedValue: '0',
inputValue: 1,
boxLabel: 'change',
name:'abc'
}
我用
Ext.getCmp('abc').setBoxLabel('not working'); // it's not working
或者
Ext.getCmp('abc').update('loss checkbox'); // it's working but checkbox's disappear.
我怎样才能做到这一点?谢谢