Sencha触摸水平旋转木马中的垂直滚动内容

时间:2011-09-23 14:41:29

标签: sencha-touch

我希望有一个水平旋转木马,每个面板的内容都可以垂直滚动。目前,内容在屏幕底部被切断,我无法向下滚动内容。我将此代码用于轮播:

Pages.Portfolio = new Ext.Carousel({
title: 'Portfolio'
});

并通过以下方式添加新项目:

Pages.Portfolio.add(
    new Ext.Panel({
        html: response.responseText                    
    })
);

要修复的布局似乎无法解决问题。

任何人都知道如何解决这个问题?

2 个答案:

答案 0 :(得分:3)

试试这个:

Pages.Portfolio = new Ext.Carousel({
  title: 'Portfolio',
  fullscreen:true
});

Pages.Portfolio.add(
    new Ext.Panel({
        html: response.responseText,
        scroll:'vertical'       
    })
);

答案 1 :(得分:0)

试试吧!

              Ext.application({
name:'ehmm',
launch:function(){
Ext.create('Ext.Carousel', {
    fullscreen: true,

defaults: {
    styleHtmlContent: true
},
scroll:'vertical',
items: [
    {
        html : 'Item 1',
        style: 'background-color: #5E99CC'
    },
    {
        html : 'Item 2',
        style: 'background-color: #759E60'
    },
    {
        html : 'Item 3',
    style:'background-color:red;'
    },
{
    html:'contohnya',
    style:'background-color:pink;'
},
]

});
}
});