LoginSignup
0
0

More than 5 years have passed since last update.

Ext JS 6.2 でグリッドのカラムが右寄せになってしまう

Posted at

Ext JS 6.2.0 での不具合です。

[FIXED] Upgrading from 6.0.2 to 6.2.0 has made all our grids right-align

次のオーバーライドを、overrides/grid/column/Column.js として配置すると回避できます。

6.2.1 では修正されるとのことですので、6.2.1 にアップグレードしたらオーバーライドは削除してください。

Ext.define('MyApp.overrides.grid.column.Column', {
    override: 'Ext.grid.column.Column',

    config: {
        triggerVisible: false,
        sorter: null,
        align: 'left'
    }
});
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0