问题是由于名单需要很高
我希望它能自动增加高度
在2.0.1中,效果是我需要的SenchaTouch2.0.1Demo
但现在项目用2.1.0
效果就像这个SenchaTouch2.1.0Demo
我怎样才能使用2.1.0实现2.0.1效果
答案 0 :(得分:0)
如果您将布局用作 vbox / hbox ,则必须设置 flex 属性。
items: [{
title: 'tab1',
scrollable: true,
layout: 'vbox',
items: [{
flex:1,
xtype: 'label',
cls: 's-header',
style: 'padding: 1em; text-align: center;',
html: 'Header'
},{
flex:1,
xtype: 'list',
itemTpl: '{title}',
scrollable: false,
...