gpt4 book ai didi

sencha-touch-2 - sencha touch 2 列表 100% 高度

转载 作者:行者123 更新时间:2023-12-04 10:28:11 25 4
gpt4 key购买 nike

2个面板:

Ext.create('Ext.Container', {
fullscreen: true,
layout: 'hbox',
items: [
{
xtype: 'panel',
html: 'message list',
flex: 1,
items: [
{
xtype: 'list',
itemTpl: '{title}',
data: [
{ title: 'Item 1' },
{ title: 'Item 2' },
{ title: 'Item 3' },
{ title: 'Item 4' }
]
}
]
},
{
xtype: 'panel',
html: 'message preview',
flex: 3
}
]
});

第一个面板列表对象中没有指定高度属性,因此无法显示。如何在 xtype: 'list' 中设置 100% 高度?

最佳答案

您需要提供列表 容器 一个布局,因此它知道拉伸(stretch)其子项(列表)。

layout: 'fit'

使用 fit 将告诉您的面板使所有子项(仅在您的情况下的列表)拉伸(stretch)到面板的大小。

Example of this on Sencha Fiddle .

And here is a great guide on all the available layouts in Sencha Touch 2.0 .

关于sencha-touch-2 - sencha touch 2 列表 100% 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9802255/

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