gpt4 book ai didi

Extjs 4.1 折叠时禁用面板预览

转载 作者:行者123 更新时间:2023-12-04 05:13:30 26 4
gpt4 key购买 nike

假设我们有以下代码:

Ext.create ( 'Ext.container.Viewport', {
layout : 'border',
items : [{
region : 'west',
xtype : 'panel',
collapsible : true,
id : 'panel1_id',
width : '45%'
}, {
region : 'center',
xtype : 'panel',
id : 'panel2_id',
width : '55%'
}]
});

正如我们所见,第一个面板是可折叠的。我的问题是:
折叠时是否可以禁用面板的预览(当我们单击折叠面板的标题时)?

最佳答案

不,它没有折叠。您需要设置collapsed: true为此。

Ext.create ( 'Ext.container.Viewport', {
layout : 'border',
items : [{
region : 'west',
xtype : 'panel',
collapsible : true, // this show the tool within the header
collapsed: true, // this collapses
floatable: false, // prevent floating on header-click when collapsed
id : 'panel1_id',
width : '45%'
},{
region : 'center',
xtype : 'panel',
id : 'panel2_id',
width : '55%'
}]
});

关于Extjs 4.1 折叠时禁用面板预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14600172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com