0

是否可以在不设置一些静态高度的情况下滚动列表,我需要使列表独立于其父控件滚动。

    {
    xtype: 'panel',
    layout: {
        type: 'fit',
        align: 'stretch'
    },
    items: [{
        xtype: 'list',
        //height:'350px', //working for static height
        scrollable: true,
        itemTpl: '{title}',
        data: [{
            title: 'Item 1'
        }]
      }]
   }

这是 Sencha Fiddle 链接

4

0 回答 0