问题是由于列表需要具有很高的。
希望它能自动增加高度。
在2.0.1中,效果是我需要的SenchaTouch2.0.1Demo
但是现在该项目带有2.1.0
效果就像这样SenchaTouch2.1.0Demo
我如何使用2.1.0达到2.0.1的效果

最佳答案

如果将layout用作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,
                ...

关于javascript - Sencha Touch 2.1.0如何使列表高度自动增加,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15238518/

10-10 23:14