Is it possible to use Extjs scripts in external html?

I downloaded hand-written scripts in Extjs using: Ext.Loader.LoadScript

Ext.Loader.loadScript({ url : './a-path/testController.js', onLoad : onLoad('loaded'), onError : onError }); 

I also added an external html file using the panel:

 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 } }) 

Question: "How can I use downloaded scripts in my external html file?"

0
javascript html extjs extjs4
May 28 '15 at 12:42
source share

No one has answered this question yet.

See similar questions:

55
AngularJS How to dynamically add HTML and bind to a controller
13
How to associate an AngularJS controller with dynamically added HTML?
2
Using script in external html in Extjs

or similar:

7205
Why does HTML consider chucknorris to be a color?
2687
Is it possible to apply CSS to half a character?
1929
HTML 5: is this a site, <br/ "> or <br/">?
1922
What are the valid values ​​for the id attribute in HTML?
1502
HTML redirect
1475
Convert HTML + CSS to PDF using PHP?
1375
Where should I put <script> tags in HTML markup?
1370
Get the position (X, Y) of an HTML element
1270
Why do not self-closing script elements work?
2
Using script in external html in Extjs



All Articles