我在试图理解在Sencha Touch 2中格式化vbox时遇到了问题。我的目标是让每个孩子都达到全高(flex将屏幕分成几部分)。为了简单起见,我有一个详细视图,显示一个记录数据,然后是与该记录相关的项目列表。
现在,使用flex,每个孩子都是一个设定的高度并自己滚动。我希望它们是全高度而父级只能滚动。如果我拿出弹片没有出现任何东西。
Ext.define('app.view.MainView', {
updateData : function(data) {
var panels = this.query('panel[tpl]'),
pLen = panels.length,
panel;
for ( p = 0; p < pLen; p++) {
panel = panels[p];
panel.setData(data);
}
this.callParent(arguments);
},
extend: 'Ext.Container',
xtype: 'mainView',
config: {
layout: {
type: 'vbox'
},
scrollable: true,
title: '',
items: [
{
xtype: 'panel',
flex: 1,
scrollable: true,
styleHtmlContent: true,
tpl: Ext.create('Ext.XTemplate',
'<div class="view-top" id="view-{id}">' +
'<div>{body}</div>' +
'</div>')
},
{
xtype: 'component',
cls: 'dark',
html: 'Top View'
},
{
flex: 1,
xtype: 'list',
store: 'ViewStore',
variableHeights: true,
itemTpl: [
'<div>{subject}</div>'
]
}
]
}
});
答案 0 :(得分:0)
找到一个解决方案,对于那些可能会遇到相同问题的人,我会发布解决方案。
基本上我必须在绘制视图后计算每个列表元素的高度,然后将列表的id高度设置为新的高度(注意:我必须将itemcount + 5添加到总高度到容纳每个项目)
Ext.define('app.view.ViewMain', {
updateData : function(data) {
var panels = this.query('panel[tpl]'),
pLen = panels.length,
panel;
for ( p = 0; p < pLen; p++) {
panel = panels[p];
panel.setData(data);
}
this.callParent(arguments);
},
extend: 'Ext.Container',
xtype: 'viewMain',
config: {
layout: {
type: 'vbox',
align: 'stretch'
},
scrollable: true,
title: '',
items: [
{
xtype: 'panel',
height: 'auto',
scrollable: null,
styleHtmlContent: true,
tpl: Ext.create('Ext.XTemplate',
'<div class="guest-top" id="view-{id}">' +
'<div>{body}</div>' +
'</div>')
},
{
xtype: 'component',
cls: 'dark',
html: 'Guest Panels'
},
{
xtype: 'list',
id: 'panelList',
store: 'ViewStore',
height: 1000,
scrollable: false,
variableHeights: true,
itemTpl: [
'<div>{subject}</div>'
]
}
],
listeners: {
painted: function(element, eOpts){
var totalHeight = 0;
var items = Ext.getCmp('panelList').getViewItems();
var itemsLn = items.length;
for (i = 0; i < itemsLn; i++) {
item = items[i];
totalHeight = totalHeight + item.element.dom.clientHeight;
}
Ext.get('panelList').setHeight(totalHeight + itemsLn + 5);
}
}
}});