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

ネストされたリストでdetailCard、タイプの a を呼び出しますExt.Panel

そのパネルで、アイテム配列にカルーセルを追加します。

于 2012-04-12T07:40:49.093 に答える