为什么听众不工作?

时间:2018-07-16 19:26:38

标签: javascript extjs

为什么第一个侦听器不工作而另一个侦听器工作?

如何设置第一个侦听器工作?

这可能与范围有关吗?

如何设置此项以查看MainControllers中可用的功能?

它是现代版本ExtJS 6.2

结构文件夹:

//FeedViewer
    //app
        //view
           //main
               /MainController.js
               /MainModel.js
              /FeedForm.js
             /Feeds.js
    //classic
    //modern
        //src
            //view
                //main
                    /Main.js

MainController.js:

Ext.define('FeedViewer.view.main.MainController', {
    extend: 'Ext.app.ViewController',
    alias: 'controller.main',

     onNewFeed: function () {
        alert('Hello');
    }
});

Feeds.js:

Ext.define('FeedViewer.view.main.Feeds', {
    extend: 'Ext.grid.Grid',

    xtype: 'feedslist',

    requires: [
        'ContactsApp.view.feeds.MainController',
        'ContactsApp.view.feeds.MainModel'
    ],

    viewModel: 'feeds',
    controller: 'feeds',

    columns: [{
        dataIndex: 'feed',
        text: 'feed'
    }],

    items: [{
        xtype: 'toolbar',
        docked: 'left',
        items: [{
            xtype: 'button'
            text: 'Add New Feed',
            iconCls: 'fa fa-plus',
            listeners: {
                click: 'onNewFeed' * * //It doesn't work**
            }
        }]
    }],
    listeners: {
        select: 'onNewFeed' * * //It  works**
    }
});

1 个答案:

答案 0 :(得分:0)

在现代工具包Ext.Button中,点击事件称为tap。您也可以使用handler配置。这是FIDDLE