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'
}],
});
プロパティを ViewModel に移動してアクセスすることはできますが、私の質問はこれです。クラス レベルのプロパティをその子コンポーネントに割り当てることはできませんか?