ExtJS - 网格中的 CheckColumn 未出现在生产构建中

ExtJS - CheckColumn in the Grid does not appear in production build

我在网格中定义了一个复选框列。当我在本地 运行 应用程序时,复选框显示正常。但是当我构建它并将其上传到服务器时,我看不到复选框出现。整列显示为 BLANK.

复选框列的代码:

{
    xtype: 'checkcolumn',
    dataIndex: 'FLAG',
    text: 'Set Flag?',
    flex: 1,
    listeners: {
        checkchange: 'onCheckcolumnCheckChange'
    }
}

FLAG 在模型中定义为布尔值:

Ext.define('App.model.FlagModel', {
    extend: 'Ext.data.Model',

    requires: [
        'Ext.data.field.Boolean'
    ],

    fields: [
        {
            name: 'ID'
        },
        {
            name: 'DS'
        },
        {
            type: 'boolean',
            name: 'FLAG
        }
    ]
});

我怀疑在构建应用程序时缺少某些 CSS 文件。

可能是什么原因,我该如何解决?

我刚刚清除了浏览器的缓存和 cookie,关闭它并再次打开应用程序,我能够在网格中看到呈现的复选框 :)