xtype "checkbox" があり、動的に 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.
どうやってやるの?ありがとう