分享

Ext grid 动态移除添加某一列

 实力决定地位 2013-04-27
  1. Because there are so much questions in the Help forum on how to add or remove a grid column I thought I'd post some utility code:

    Code:
    Ext.override(Ext.data.Store,{
    	addField: function(field){
    		field = new Ext.data.Field(field);
    		this.recordType.prototype.fields.replace(field);
    		if(typeof field.defaultValue != 'undefined'){
    			this.each(function(r){
    				if(typeof r.data[field.name] == 'undefined'){
    					r.data[field.name] = field.defaultValue;
    				}
    			});
    		}
    	},
    	removeField: function(name){
    		this.recordType.prototype.fields.removeKey(name);
    		this.each(function(r){
    			delete r.data[name];
    			if(r.modified){
    				delete r.modified[name];
    			}
    		});
    	}
    });
    Ext.override(Ext.grid.ColumnModel,{
    	addColumn: function(column, colIndex){
    		if(typeof column == 'string'){
    			column = {header: column, dataIndex: column};
    		}
    		var config = this.config;
    		this.config = [];
    		if(typeof colIndex == 'number'){
    			config.splice(colIndex, 0, column);
    		}else{
    			colIndex = config.push(column);
    		}
    		this.setConfig(config);
    		return colIndex;
    	},
    	removeColumn: function(colIndex){
    		var config = this.config;
    		this.config = [config[colIndex]];
    		config.splice(colIndex, 1);
    		this.setConfig(config);
    	}
    });
    Ext.override(Ext.grid.GridPanel,{
    	addColumn: function(field, column, colIndex){
    		if(!column){
    			if(field.dataIndex){
    				column = field;
    				field = field.dataIndex;
    			} else{
    				column = field.name || field;
    			}
    		}
    		this.store.addField(field);
    		return this.colModel.addColumn(column, colIndex);
    	},
    	removeColumn: function(name, colIndex){
    		this.store.removeField(name);
    		if(typeof colIndex != 'number'){
    			colIndex = this.colModel.findColumnIndex(name);
    		}
    		if(colIndex >= 0){
    			this.colModel.removeColumn(colIndex);
    		}
    	}
    });
    Usage example:
    Code:
    var grid = new Ext.grid.GridPanel({
    	store: new Ext.data.SimpleStore({
    		fields: ['A', 'B'],
    		data: [['ABC', 'DEF'], ['GHI', 'JKL']]
    	}),
    	columns: [
    		{header: 'A', dataIndex: 'A'},
    		{header: 'B', dataIndex: 'B'}
    	]
    });
    new Ext.Viewport({
    	layout: 'fit',
    	items: grid
    });
    grid.addColumn('C');
    grid.addColumn({name: 'D', defaultValue: 'D'}, {header: 'D', dataIndex: 'D'});
    grid.removeColumn('B');
    As mentioned in post #37:
    Adding and removing fields currently does not update the extractors used to load data. If you want to update these too then you should call:
    Code:
    delete store.reader.ef;
    store.reader.buildExtractors();
  2. Send a message via MSN to Marshal.Lin
  3. Default


    Quote Originally Posted by jgarcia@tdg-i.comView Post
    i think this should be added to the base!
    up!

  4. #7
    Ext User
    Join Date
    Dec 2008
    Posts
    8
    Vote Rating
    1
    Marshal.Lin is on a distinguished road

    0

    Default


    if i want to use it like below,does it work? thanks!
    Code:
    var myReader = new Ext.data.JsonReader({
              id:"id",
              totalProperty: "total",
              root:"rows"                    
                }, new Ext.data.Record.create([
                    {name: 'id', type: 'int'},
                    {name: 'name', type: 'string'},
                ])
      );  
     var ds= new Ext.data.Store({
                proxy:new Ext.data.HttpProxy({url:'/getdata'}),
                reader: myReader
            });
            
        var cm = new Ext.grid.ColumnModel([       
            {header:'ID',dataIndex:'id'},
            {header:'NAME',dataIndex:'name'}       
      ]);
        
      var grid = new Ext.grid.EditorGridPanel({
            store: ds,
            cm: cm
      });
    
    grid.addColumn({header:'AGE',dataIndex:'age'});

  5. #8
    Sencha - Community Support Team Condor's Avatar
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    24,251
    Vote Rating
    39
    Condor is a splendid one to behold Condor is a splendid one to behold Condor is a splendid one to behold Condor is a splendid one to behold Condor is a splendid one to behold Condor is a splendid one to behold Condor is a splendid one to behold

    0

    Default


    Yes, that should work.

    You could also use:
    Code:
    grid.addColumn({name: 'age', type: 'int', defaultValue: null}, {header: 'AGE', dataIndex: 'age', sortable: true});

  6. #9
    Ext User
    Join Date
    Dec 2007
    Posts
    214
    Vote Rating
    1
    Radziu is on a distinguished road

    0

    Default


    is it possible to add column on the designated place? eg. we have 5 columns and i would like to add second column


    hmm...and removeColumn doesnt work in checkboxselectionmodel, addColumn is ok

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约