2013-02-22 77 views
0

我正在嘗試創建摺疊和展開根本不起作用的手風琴佈局。我正在使用ext-4.1.0。Ext Js 4.1手風琴佈局展開收起不工作

我已經創建了一個視圖,並使用控制器將此視圖添加到另一個面板。在添加collpase並展開後出現奇怪的行爲。 +圖標不會更改爲 - 並且不會在第二次點擊時展開。

下面是代碼

  Ext.define('AM.view.MyView' ,{ 
       extend:'Ext.panel.Panel', 
       title: 'Accordion Layout', 
       alias:'widget.myView', 


       layout: { 
        type: 'accordion', 
        titleCollapse: false, 
        animate: true, 
        activeOnTop: true 
       }, 
       width:300, 
       height: 300, 
       defaults: { 
        bodyStyle: 'padding:15px' 
       }, 

       items: [{ 
        title: 'Panel 1', 
        html: 'Panel content!', 
         floatable:false 

       },{ 
        title: 'Panel 2', 
        html: 'Panel content!', 
        floatable:false 
       },{ 
        title: 'Panel 3', 
        html: 'Panel content!', 
        floatable:false 
       }] 
      });     

剛造訪的1個鏈接(http://www.sencha.com/forum/showthread.php?247396-4.1.3-Accordion-Layout-not-working-when-dynamically-adding-items),但沒有幫助。

在此先感謝您的幫助

回答