-->

Ext JS, change grid column configs default values

2019-07-21 09:31发布

问题:

Ext.grid.column.Column class has following configs:

  • draggable (Defaults to: true)
  • sortable (Defaults to: true)
  • menuDisabled (Defaults to: false)

Is it possible to change default values of this configs globally for all grid columns in my application ?

Any help appreciated.

回答1:

yes, using Ext.override......

http://docs.sencha.com/extjs/5.1/5.1.0-apidocs/#!/api/Ext-method-override

example...

Ext.override(Ext.grid.column.Column, {
 draggable: true,
 sortable: true,
 menuDisabled: false
});


回答2:

Given that the accepted answer is for ExtJS 5.x, I thought it would be useful to have an answer for ExtJS 4.x too.

Something like the following should do it:

  Ext.define('Ext.my.grid.column.Column', {
    override : 'Ext.grid.column.Column',
    draggable : false,
    sortable : false,
    menuDisabled : true
  });

Now every time you use a column in a grid, it will take these as defaults.