0

Controller.like http://docs.sencha.com/ext-js/4-1/#!/api/Ext.app.Controllerのプラグインにイベントリスナーを追加したい コンポーネントクエリを使ってプラグインを取得するのとは違うようです通常のコンポーネント。コンポーネントクエリを使用してコンポーネントからプラグインを取得することは可能ですか?

これが私のコンポーネントです

Ext.define('App.view.file.List',{
     rootVisible: false, 
     extend:'Ext.tree.Panel',
     alias:'widget.filelist',
     viewConfig: {
        plugins: {
            ptype: 'treeviewdragdrop', 
            allowParentInsert:true 
        }
    },
    //etc ...

次のようなコンポーネント クエリを使用して、 treeviewdragdropプラグインを取得できますか

Ext.define('App.controller.FileManagement', {
    extend:'Ext.app.Controller',
    stores:['Folder'],
    views:['file.List','file.FileManagement'],
    refs:[
        { ref:'fileList', selector:'filelist' }
    ],
    init:function () {
        this.control({  
            'filelist > treeviewdragdrop':{drop:this.drop}  // <-- here is selector
        });
    },
    // etc ....
4

2 に答える 2

4

プラグインはコンポーネントではないため、できません。したがって、セレクターはそれを見つけられません。

また、drop イベントはツリービューによって発生するため、実際にフックしたいのはツリービューです。

これはうまくいきます:

init:function () {
    this.control({  
        'filelist > treeview': {drop:this.drop}
    });
},
于 2012-06-06T14:49:54.430 に答える
2

There is no straightforward approach to do that. If I were in your shoes I would, probably, made tree to fire needed event when the plugin fires its event:

// view
Ext.define('App.view.file.List',{
     // ...
     viewConfig: {
        plugins: {
            ptype: 'treeviewdragdrop',
            pluginId: 'treeviewdragdrop', // <-- id is needed for plugin retrieval
            allowParentInsert:true 
        }
    },
    initComponent: funcion() {
      var me = this;
      me.addEvents('viewdrop');
      me.callParent(arguments);
      me.getPlugin('treeviewdragdrop').on('drop', function(node, data, overModel, dropPosition, eOpts) {
        // when plugin fires "drop" event the tree fires its own "viewdrop" event
        // which may be handled via ComponentQuery
        me.fireEvent('viewdrop', node, data, overModel, dropPosition, eOpts);
      });
    },
    // ...

Controller:

// controller
Ext.define('App.controller.FileManagement', {
    // ...
    init:function () {
        this.control({  
            'filelist':{viewdrop:this.drop}  // <-- here is selector
        });
    },
    // etc ....
于 2012-06-06T14:08:15.827 に答える