0
在Extjs 6中如何通過綁定或直接賦值將配置屬性直接分配給視圖?如何將配置屬性賦予Extjs 6中的視圖項目?
Ext.define('App.view.main.Main', {
extend: 'Ext.Container',
config: {
btnLabel: 'MyButton'
},
someOtherProperty:'xyz',
items: [{
xtype:'button',
//text:this.someOtherProperty,
//text:this.btnLabel,
//text:this.getBtnLabel(),
//here accessing this throws error, while loading this refers to windows object and not the class...
width:'150px'
}],
});
我可以將財產轉移到視圖模型和訪問,但我的問題是,我們不能指定類級屬性,其子組件?