1

http://dev.sencha.com/deploy/touch/examples/nestedlist/

在嵌套列表中,我有 Home ,当我点击我移动到该产品中的 Product 时,我必须显示选项卡轮播或选项卡。但我无法管理。

我们有这个旋转木马

// Create a Carousel of Items
   var carousel = new Ext.Carousel({
  defaults: {
           cls: 'card'
            },

  items: [{
           html: '<p>Navigate the two carousels on this page by swiping left/right or          
           clicking on one side of the circle indicators below.</p>'
          },
         {
           title: 'Tab 2',
           html: '2'
          },
         {
           title: 'Tab 3',
           html: '3'
         }]
    });

在我给出的嵌套列表中

{
text: 'Wer sind Wir',
items:
[ carousel ]
}

它既不给出错误。那么我们怎么称呼它呢?

4

1 回答 1

0

在嵌套列表中调用 adetailCard类型Ext.Panel

在该面板中,将您的轮播添加到 items 数组中。

于 2012-04-12T07:40:49.093 回答