我有类似的观点(这只是一个例子):
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 设置为父容器 - 它只会减少我在列表中的内容。
有谁知道该怎么做才能让它按我的意愿工作?