我有类似的观点(这只是一个例子):
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设置为父容器 - 它只是减少了列表中的内容。
有谁知道如何让它按我的意愿运作?
答案 0 :(得分:0)
您已通过向父容器提供可滚动:false 到列表和 true 相同的参数来做得对strong>。如果要防止列表中的内容被删除,您可以使用以下 css 代码
.<yourListClass> .x-scroll-scroller,.<yourListClass> .x-scroll-container{
position:relative;
}