次のように定義されたパネルがあります。
Ext.define('E.view.portfolio.Construction', {
extend: 'Ext.form.Panel',
xtype: 'portfolioconstruction',
closable: true,
layout: 'border',
baseCls: 'module-workspace',
// ...
});
そのパネル内に、items 配列があります。アイテムの1つは別のパネルです。そのパネルの定義は次のとおりです。
{
region: 'center',
xtype: 'portfoliosettings',
itemId: 'portfolioSettings',
title: 'Portfolio Settings',
collapsible: true,
collapseDirection: 'right',
collapsedCls: 'portfolio-settings-collapsed',
flex: 10,
cls: 'module-section portfolio-settings',
frame: true,
padding: 0,
margin: 0
}
width
このパネルでの設定は効果がありません。設定するmaxWidth
とminWidth
、パネルの周囲に多くの余分なスペースが配置されます。パネルの最大幅を制御しながら flex プロパティを使用する方法はありますか? 高解像度 (1920 x 1080) では大きすぎるか、低解像度 (1024 x 768) ではコンテンツに合わないかの決断を迫られています。
ある種の幸せな媒体はありますか、それとも私はこれにこだわっていますか?