我希望有一个水平旋转木马,每个面板的内容都可以垂直滚动。目前,内容在屏幕底部被切断,我无法向下滚动内容。我将此代码用于轮播:
Pages.Portfolio = new Ext.Carousel({
title: 'Portfolio'
});
并通过以下方式添加新项目:
Pages.Portfolio.add(
new Ext.Panel({
html: response.responseText
})
);
要修复的布局似乎无法解决问题。
任何人都知道如何解决这个问题?
答案 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;'
},
]
});
}
});