我的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