indapublic
indapublic

Reputation: 2328

Sencha Framework. Three-column Carousel

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

Answers (1)

Ram G Athreya
Ram G Athreya

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

Related Questions