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