Sencha Touch 2 - 滚动列表与其他元素

时间:2013-05-06 09:35:20

标签: list sencha-touch sencha-touch-2 scrollable

我有类似的观点(这只是一个例子):

xtype: 'container',
layout: {
   type: 'vbox'
},
items: [
   { xtype: 'some elements (actually this one is container, but it doesn't matter I think)' },
   { xtype: 'list', flex: 1 }
]

我需要所有这些东西可以一起滚动,但是如果我使列表可滚动:false并将相同参数的true设置为父容器 - 它只是减少了列表中的内容。

有谁知道如何让它按我的意愿运作?

1 个答案:

答案 0 :(得分:0)

您已通过向父容器提供可滚动:false 列表 true 相同的参数来做得对strong>。如果要防止列表中的内容被删除,您可以使用以下 css 代码

.<yourListClass> .x-scroll-scroller,.<yourListClass> .x-scroll-container{
position:relative;
}