ExtJS 6 Ext.field.Date 不包含 header 个 Ext.panel.Date

ExtJS 6 Ext.field.Date doesnt contain header of Ext.panel.Date

我需要一种使用 Ext.field.Date 组件 select 年的简单方法。

Ext.panel.Date 包含 header 并且能够 select 年。但是,内部使用 Ext.panel.DateExt.field.Date 不包含此 header。

Simple fiddle来说明我的意思。

如何在 Ext.field.Date 选择器中显示此 header?也许我错过了一些配置?或者它是一个错误,我必须在源代码中修复它?

之所以会这样是因为日历中的header是空的objectExt.panel.Date

override: 'Ext.panel.Date',
constructor: function(config){
    delete config.header
    this.callParent([config])
},