I want to have a horizontal carousel where the content of each panel is able to scroll vertically. Currently the content is chopped off at the bottom of the screen and I am unable to scroll down the content. I use this code for the carousel:
Pages.Portfolio = new Ext.Carousel({
title: 'Portfolio'
});
And add new items to it by:
Pages.Portfolio.add(
new Ext.Panel({
html: response.responseText
})
);
Layout to fixed does not seem to solve the problem.
Anyone an idea how to solve this problem?