巨大なHTML文字列を連結するコントロールを使用する代わりに、XTemplateオブジェクトを独自のファイルに分離したいと思います。問題は、このクラスでテンプレートテキストを設定する方法がわからないことです。通常、新しいXTemplateオブジェクトをインラインで作成し、テンプレートテキストを最初のパラメーターとして渡します。
これは可能ですか?どのプロパティを設定する必要がありますか?
/**
* Custom XTemplate
*/
Ext.define('MyApp.view.MySuperDuperXTemplate', {
extend: 'Ext.XTemplate',
xtype: 'mySuperDuperXTemplate',
html: 'Does the template text go here?',
text: 'That didn\'t work, let me try this...',
tpl: 'How about this? No?...'
});