是否可以在外部html中使用Extjs的脚本?

时间:2015-05-28 12:42:11

标签: javascript html extjs extjs4 extjs4.1

我使用:Ext.Loader.LoadScript

将手动编写的脚本加载到Extjs
Ext.Loader.loadScript({
                url : './a-path/testController.js',
                onLoad : onLoad('loaded'),
                onError : onError
            });

我还使用面板添加了一个外部html文件:

var myTestPanel = Ext.create('Ext.panel.Panel', {
            title : 'Example 1',
            width : 250,
            height : 250,
            frame : true,
            loader: {
               url: './test.html',
               renderer: 'html',
               autoLoad: true,
               scripts: true
            }
    })

问题是“如何在外部html文件中使用加载的脚本?”

0 个答案:

没有答案