2016-08-28 25 views
-3
Ext.define('iTell.view.MarketView', { 
    extend: 'Ext.Container', 
    xtype: 'marketview', 

    config: { 
     scrollable: false, 
     layout: 'fit', 
     items: [ 
      { 
       xtype: 'toolbar', 
       title: Malls, 
       docked: 'top', 
       items: [ 
        { 
         xtype: 'button', 
         ui: 'back', 
         text: 'Back', 
         cls: 'backBtnCls', 
         iconMask: true, 
         id: 'exitAppBtn', 
         handler: function() { 
          this.up('marketview').fireEvent('exitApp', this); 
         } 
        }, 
        { 
         xtype: 'spacer' 
        }, 
       ] 
      }, 
      { 
       xtype: 'list', 
       loadingText: "", 
       scrollable: true, 
       scrollToTopOnRefresh: false, 
       selectedCls: 'item_selected_bg_style', 
       store: 'MarketStore', 
      }, 
     ] 
    }, 
    loadData: function() { 
     test(); 
    } 

    test(){ 
     alert("this is the method to been called"); 
    } 
}); 

なぜテストメソッドが呼び出されていないのですか?Extjsで関数が呼び出されなかった理由

+1

そして、あなたはloadData' ...すべての – Emissary

+0

まず、どの内線のバージョンを私たちが話している? '呼んでいるの追加Ext.Containerとは何ですか?私は 'Ext.container.Container'しか知りません。 – Thomas

答えて

0

thisポインタ

this->test(); 
関連する問題