Ext.grid.EditorGridPanel的一个小问题

当一个页面有多个结构相同的Ext.grid.EditorGridPanel时,我们可能定义一个列信息,

var columns = [{},{},{}...]; // 1、这里指定不指定editor,

然后多次使用这个数组初始化各个Grid的ColumnModel:

var cm = new new Ext.grid.ColumnModel(columns);

//2、 或是这里再指定editor,现象都一样。

 

然后就会出现某个Grid的某个列第一次编辑以后,其他Grid的此列都不能编辑了。

说明columns数组或是其中的各个对象被共享了。

翻开3.0源码一看,果然,直接在setConfig方法中this.config = config了,(ps:发现创建editor的代码在source中的和ext-all-debug.js中的代码是不一致的。)。

 

将这个几句代码稍微改改,不直接用config就可以实现共用了。

Ext.grid.ColumnModel.prototype.setConfig =function(config, initial){
        if(!initial){             delete this.totalWidth;
            for(var i = 0, len = this.config.length; i < len; i++){
                var c = this.config[i];
                if(c.editor){
                    c.editor.destroy();
                }
            }
        }
        this.config = [];
        this.lookup = {};
                for(var i = 0, len = config.length; i < len; i++){
            var col = Ext.apply({},config[i]);
            this.config.push(col);
            var c = Ext.applyIf(col, this.defaults);
            
            if(typeof c.renderer == "string"){
                c.renderer = Ext.util.Format[c.renderer];
            }
            if(typeof c.id == "undefined"){
                c.id = i;
            }
            if(c.editor && c.editor.isFormField){
                c.editor = new Ext.grid.GridEditor(c.editor);
            }
            this.lookup[c.id] = c;
        }
        if(!initial){
            this.fireEvent('configchange', this);
        }
    }

 

 

 

你可能感兴趣的:(C++,c,ext,C#,prototype)