ExtJS SenchaCMD MVC覆盖文件夹 - 如何使用它

时间:2014-08-22 15:28:55

标签: extjs extjs4 extjs4.1 extjs4.2 extjs-mvc

我使用Sencha CMD(ExtJS 4.2.1)进行应用程序构建。

我生成一个文件夹结构,如下图所示:

enter image description here

现在,我有一个代码修复了4.2.1版本中的错误(在网格中执行record.destroy()时会出现错误:Uncaught TypeError: Cannot read property 'className' of undefined

嗯,关键是我如何将它放入覆盖文件夹以及如何使Extjs在构建时考虑它。

enter image description here

Ext.define('Ext.view.override.Table', {
    override: 'Ext.view.Table',

    doStripeRows: function(startRow, endRow) {
        var me = this,
            rows,
            rowsLn,
            i,
            row;


        if (me.rendered && me.stripeRows) {
            rows = me.getNodes(startRow, endRow);

            for (i = 0, rowsLn = rows.length; i < rowsLn; i++) {
                row = rows[i];

                if (row) { // self updating; check for row existence
                    row.className = row.className.replace(me.rowClsRe, ' ');
                    startRow++;

                    if (startRow % 2 === 0) {
                        row.className += (' ' + me.altRowCls);
                    }
                }
            }
        }
    }

});

名称'Ext.view.override.Table'是否正常,或者我必须更改名称才能让Sencha CMD将其识别为覆盖?

感谢任何帮助。

0 个答案:

没有答案