我在我的 Ext 应用程序中遇到了语法问题。我认为它是语法,因为它在 Firefox 中运行良好,但在 Internet Explorer 中运行良好
layout: 'vbox',
tbar: Ext.create('AM.view.TopToolbar', {}), //Trouble Code
items: [ ...
有任何想法吗?
IE 中的错误:
SCRIPT16389: Unspecified error.
ext-all-debug.js, line 5017 character 17
应用程序/视图/TopToolbar.js:
Ext.define('AM.view.TopToolbar', {
extend: 'Ext.Toolbar',
alias: 'widget.toptoolbar',
defaults: { arrowCls: '' }, //Removing black arrow from toolbar items
items: [
{ text : 'Tools' }
]
}); // this is the entire toolbar so far