Sencha Architect从其他函数调用函数

时间:2012-05-03 16:04:22

标签: javascript extjs sencha-architect

我有一个FormPanel(见下文),它定义了几个函数。 我需要从另一个函数调用一个函数,但我得到错误 我调用的函数是未定义的。 如果我从OnMyButtonTap函数调用ShowInspections它可以工作 如果我从LoginOk函数调用ShowInspections它不起作用 我很茫然,我相信这是一个范围问题,但是我真的需要这么新的Sencha 一些帮助。

Ext.define('MyApp.view.LoginPanel', {
extend: 'Ext.form.Panel',
alias: 'widget.Login',

config: {
    items: [
        {
            xtype: 'fieldset',
            height: 226,
            width: 440,
            title: 'Enter Login Information',
            items: [
                {
                    xtype: 'textfield',
                    id: 'userid',
                    label: 'User ID',
                    labelWidth: '40%',
                    required: true
                },
                {
                    xtype: 'textfield',
                    id: 'pswd',
                    label: 'Password',
                    labelWidth: '40%',
                    required: true
                }
            ]
        },
        {
            xtype: 'button',
            height: 86,
            itemId: 'mybutton',
            text: 'Login'
        }
    ],
    listeners: [
        {
            fn: 'onMybuttonTap',
            event: 'tap',
            delegate: '#mybutton'
        }
    ]
},

onMybuttonTap: function(button, e, options) {
    doLogin(Ext.getCmp('userid').getValue(),Ext.getCmp('pswd').getValue(),this.LoginOk,this.LoginFail,this.LoginError);

},

LoginOk: function() {
    //
    // this function is called from doLogin and it works
    //
    //GetInspections('01/01/2011','12/31/2012','','',this.ShowInspections,this.LoadDataFail,this.LoadDataError);
    // the function GetInspections does work, but does not call the "ShowInspections" function
    this.ShowInspection);  // directly calling this function does NOT work either
},

LoginFail: function() {
    Ext.Msg.alert('Invalid User ID and/or Password.');

},

LoginError: function() {
    Ext.Msg.alert('Login Error!');
},

LoadDataFail: function() {
    Ext.Msg.alert('No Inspections found.');
},

LoadDataError: function() {
    Ext.Msg.alert('Error Loading Inspections.');
},

ShowInspections: function() {
    Ext.Msg.alert('got inspections');
}

});

2 个答案:

答案 0 :(得分:0)

当前代码中存在一些拼写错误。

this.ShowInspection); 

应为

this.ShowInspections(); 

这不是你的问题吗?

答案 1 :(得分:0)

你错过了()你需要改变的地方就是this.LoginOk(),this.LoginFail()等和this.ShowInspections()