Extjs4如何使用参数调用函数?

时间:2012-06-20 08:20:23

标签: model-view-controller function extjs

此代码无法正常工作:我调用传递变量的函数 这样做的正确方法是什么?有什么建议吗?

Ext.define('DigitalPaper.view.DirTree' ,{
    extend: 'Ext.TreePanel',
    requires: ['Ext.window.MessageBox'],
    id: "DirTree",
    store: 'DirTree',
    alias : 'widget.DirTree',
    title : 'Cartelle',
    rootVisible: true,
    useArrows: true,
    scope: this,
    selectNode: undefined,

initComponent: function() {
    //HERE: 
    this.assocFolderColumnset(id);

    this.callParent(arguments);
}

,assocFolderColumnset: function (id){
    console.log(id);
}

});

1 个答案:

答案 0 :(得分:0)

对代码的更正

this.assocFolderColumnset(this.id);

并在assocFolderColumnset

,assocFolderColumnset: function (id){
    this.id = id;
    console.log(id);
}