Reputation: 2328
I'm newbie on Sencha. I want to make 3-column vertical carousel. For example, TMall interface for IPad
Is it possible?
Upvotes: 1
Views: 173
Reputation: 4952
i think this is what you want
{
xtype: container,
layout: 'hbox',
items: [
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
},
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
},
{
xtype: 'carousel',
direction: 'vertical',
...what the carousel should contain
}
]
}
Hope it helps
Upvotes: 1