0

我尝试使用 EditorGridPanel 在我的网格中添加一个组合框,但我收到一个我无法解决的错误。

错误: Ext.reg 不是函数 Ext.reg('editorgridpanel', Ext.ux.grid.EditorGridPanel);

在我的文件 EditorGridPAnel.js 中,我这样做:

Ext.define('Ext.ux.grid.EditorGridPanel' ,{ extend : 'Ext.grid.GridPanel', 别名: 'EditorGridPanel.editorgrid', -- -- -- Ext.reg('editorgridpanel', Ext.ux .grid.EditorGridPanel);

如果有人可以帮助我,请..从星期五开始,我试图解决它,但没有:(

4

1 回答 1

0

如果您正在开发 MVC 应用程序并想要创建网格的扩展,然后想要将该网格的实例与 xtype 一起使用。您必须将别名设置为 widget.xtypename。

Ext.define('AM.view.user.List' ,{ extend: 'Ext.grid.Panel', alias : 'widget.userlist' });

于 2013-02-04T09:13:37.613 回答