を埋めるためにExt.Panelの高さを取得するにはどうすれば持って、次のExt.TabPanel:親エリアに
はどのように取得することができます。このようになります
var modules_info_panel = new Ext.TabPanel({
activeTab: 0,
defaults:{autoScroll:true},
//layout: 'fit', // makes component disappear
viewConfig: {
forceFit: true //has no effect
},
// height: auto, //error "auto isn't recognized"
items:[{
title: 'Section 1',
html: 'test'
},{
title: 'Section 2',
html: 'test'
},{
title: 'Section 3',
html: 'test'
}]
});
中間の行を下に伸ばして、親の空間を垂直に塗りつぶしますか?ここで
は、タブパネルがregionContent
にロードされる方法は次のとおりです。
regionContent = new Ext.Panel({
id: 'contentArea',
region: 'center',
autoScroll: true
});
function clearExtjsComponent(cmp) {
var f;
while(f = cmp.items.first()){
cmp.remove(f, true);
}
}
function replaceComponentContent(cmpParent, cmpContent) {
clearExtjsComponent(cmpParent);
cmpParent.add(cmpContent);
cmpParent.doLayout();
}
replaceComponentContent(regionContent, modules_info_panel);
私は高さがDOMに、この要素のためであることがわかり設定されていることを絶対(19px)、ですか?修正さ
var modules_info_panel = new Ext.TabPanel({
activeTab: 0,
defaults:{autoScroll:true},
items:[{
title: 'Section 1',
layout: 'fit',
html: 'test'
},{
title: 'Section 2',
layout: 'fit',
html: 'test'
},{
title: 'Section 3',
layout: 'fit',
html: 'test'
}]
});
申し訳ありませんが、私はレイアウトの正しい配置と私の応答を更新しました:「フィット」私が試したこと – McStretch