Ext JS 4.1.1 を使用して Web ページの GUI を作成しています。より複雑なレイアウトで使用できるコンポーネント (以下の「 GeneSearchComponent 」)を作成しようとしました。しかし、何らかの理由で「GeneSearchComponent」のインスタンスをhpanelに挿入できません。定義済みの「Ext.panel.Panel」クラスを拡張する際 (および独自の「ウィジェット」を作成する際) に何が欠けていますか?
" " への呼び出しを削除するとExt.create('gene-search-component', ...
、すべてが機能します。元に戻すと、すべてが壊れます。なぜだろう。
(「gene-combobox」の定義は含めていません。それが私の問題の根本原因ではないと確信しています。)
御時間ありがとうございます!
トゥオマス
Ext.define('GeneSearchComponent', {
extend: 'Ext.panel.Panel',
alias: ['gene-search-component'],
constructor: function(cnfg) {
this.callParent(arguments);
this.initConfig(cnfg);
},
config: {
collapsible: true,
frame: true,
title: 'Search',
bodyPadding: '15 15 15 15',
width: 350,
layout: {
type: 'vbox',
align: 'left'
},
items: [
Ext.widget('gene-combobox', {
id: 'comboboxid'
}),
Ext.create('Ext.Button', {
text: 'Search',
handler: function() {
dosomething();
}})]
},
onRender: function() {
this.callParent(arguments);
}
});
Ext.application({
name: 'FW',
launch: function() {
var bd = Ext.getBody();
var div = Ext.get("search_form");
var hpanel = Ext.create('Ext.panel.Panel', {
id: 'horizontal-panel',
title: "HBoxLayout Panel",
layout: {
type: 'hbox',
align: 'middle'
},
items: [
Ext.create('Ext.container.Container', {
id: 'another-panel',
title: "VBoxLayout Panel",
width: 250,
layout: {
type: 'vbox',
align: 'left'
},
items: [{
xtype: 'panel',
width: 250,
title: ' Panel One',
flex: 2
},{
xtype: 'panel',
width: 250,
title: ' Panel Two',
flex: 1
},{
xtype: 'panel',
width: 250,
title: ' Panel Three',
flex: 1
}]}),
Ext.create('gene-search-component', {
id: 'searchPanel',
})],
renderTo: div,
});
}
});