-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で関数が呼び出されなかった理由
そして、あなたはloadData' ...すべての – Emissary
まず、どの内線のバージョンを私たちが話している? '呼んでいるの追加Ext.Containerとは何ですか?私は 'Ext.container.Container'しか知りません。 – Thomas