Sencha Architect 2 で生成されたコードを別のクラスに分割したい 私が望むのは、別のクラスで tabpanel を宣言し、次のコードでインスタンス化されたクラスを使用することです。
Ext.define('MyApp.view.MyWindow', {
extend: 'Ext.window.Window',
height: 430,
width: 748,
layout: {
type: 'fit'
},
title: 'Add New Business Unit',
modal: true,
initComponent: function() {
var me = this;
Ext.applyIf(me, {
items: [
{
xtype: 'tabpanel',
frame: true,
activeTab: 0,
items: [
{