我创建了一个名为MaterialSelector
的自定义xtype,并在我的一个外部视图中使用。
我需要从我的自定义xtype的initComponent
函数中引用父视图。
当我从this.xtypesChain
方法调用console.log initComponent
时,它会返回以下xtypes数组
[&#34;组件&#34;,&#34;框&#34;,&#34;容器&#34;,&#34; fieldset&#34;,&#34; MaterialSelector&#34;] < / p>
当我尝试通过xtype访问父视图时,如:this.findParentByType('fieldset')
脚本始终返回undefined
。我是否在这里做错了什么?