2012-11-13 75 views
0

我想問一個問題:在sencha touch中開發應用程序時,是否可以在TabPanel中添加傳送帶? 我只是想添加一個標籤命名的畫廊,並把一些圖像旋轉木馬.. 請幫助..在使用Sencha Touch時在TabPanel中使用傳送帶

的代碼如下...

Ext.application({ 
    name: 'Employee Form', 
    launch: function() { 
     Ext.create('Ext.TabPanel', { 
      extend: 'Ext.Carousel', 
      fullscreen: true, 
      defaults: { 
       styleHtmlContent: true 
      }, 
      layout: { 
       animation: { 
        type: 'slide' 
       } 
      }, 
      items: [ 
       { 
        title: 'Home', 
        html: 'You are on the Home Screen Now' + ['<center><img width="100%" height="350px" src="http://staging.sencha.com/img/sencha.png" /></center>'].join(""), 
        items: [ 
         { 
          xtype: 'toolbar', 
          html: '<center>Muhammad Burhan</center>', 
          docked: 'bottom', 
         } 
        ] 
       }, 
       { 
        title: 'Gallery', 
        items: [ 
         { 
          xtype: 'carousel', 
          direction: 'vertical', 
          items: [ 
           { 
            html: 'Welcome' + ['<center><img width="60%" height="100%" src="lib/touch/img/welcome.gif"</center>'].join(), 
           }, 
           { 
            html: 'First Picture' + ['<center><img width="100%" height="100%" src="lib/touch/img/pic.jpg" /></center>'].join(""), 
           } 
          ] 
         } 
        ] 
       }, 

回答

0

爲什麼不與圖像從Tab平板打造的旋轉木馬seperately,只是把轉盤與標題庫中的項目?

+0

這個伎倆。 –

0

下面是一個例子:http://www.senchafiddle.com/#DQ0wD

實際上,您需要將第二個tabbar項目製作爲輪播,而不是像您嘗試的那樣將輪播項目添加到您的tabbar項目。

希望這有助於

+0

TDeBailleul謝謝你的解決方案。我已經得到了解決方案..再次感謝您的答覆 –

+0

不客氣。然後接受這個答案或張貼您自己的答案並接受它。 –

相關問題