标签: javascript jquery html extjs extjs4
我在Extjs的Panel中有一个外部html。但是我的html中用脚本标签定义的脚本没有加载;因此我的html无法正常工作。
public
直到现在我已经尝试过:
前两个将我的脚本加载到Extjs(我可以在firebug中看到它),但我的html文件仍然无法访问它。
因此;
使用它的(工作)替代方案是什么?
答案 0 :(得分:1)
不推荐使用autoLoad配置。请改用loader。
autoLoad
loader
var test = Ext.create('Ext.panel.Panel', { title : 'Example 1', width : 250, height : 250, frame : true, loader: { url: './test.html', autoLoad: true, scripts: true } });