我有一个网格,在列中我正在使用menuDisabled : false
,因为我正在获取标题菜单。如菜单所示。
我想删除Column,但没有得到任何保留或任何配置,我可以通过这样做。任何人都可以建议我如何从菜单标题中删除列?
答案 0 :(得分:-1)
覆盖网格列并设置可隐藏:false
Ext.define('overrides.grid.column.Column', {
override: 'Ext.grid.column.Column',
hideable: false, // Whether the column should be hideable.
// Initializes the component.
// @override
//
initComponent: function () {
this.callParent();
}
});