Hosted Ext js 4 - Where can I find and make it from my pages?

I checked Google Hosted EXT Js and I cannot find EXT JS 4. I would like my web pages to link to EXT JS 4 from there, and not from my local web server. Any of them, please give me the full path to EXT JS 4, where there is somewhere on the Internet that is always accessible and can be used by another web page, as in

<link rel = "stylesheet" type = "text / css" href = "LINK_TO_EXTJS4 / resources / css / ext-all.css">
<script type = "text / javascript" src = "LINK_TO_EXTJS4 / ext-all.js"> </script>
Therefore, I need these two lines above, replacing it LINK_TO_EXTJS4with some EXT JS4, where on the Internet, since my user browsers extract the JavaScript library from these ends, and not from my local web server. Thanks
+5
source share
2 answers

This is correct here .

You can use this script tag ...

<script type="text/javascript" charset="utf-8" src="http://cdn.sencha.io/ext-4.0.7-gpl/ext-all.js"></script>

EDIT:

Css tag ..

<link rel="stylesheet" type="text/css" href="http://cdn.sencha.io/ext-4.0.7-gpl/resources/css/ext-all.css">
+9
source

You can read here CDN / Google Load Delivery and how to get the latest version, and here to see which libraries are currently supported .

EXT js 3 (+) , 4 , . , , Google "" .

<script src="http://www.google.com/jsapi"></script>
<script>
// Load jQuery
google.load("ext-core", "4"); //this here!!!!

// on page load complete, fire off a jQuery json-p query
// against Google web search
google.setOnLoadCallback(function() {
$.getJSON("http://ajax.googleapis.com/ajax/services/search/web?q=google&;v=1.0&;callback=?",

// on search completion, process the results
function (data) {
if (data.responseDate.results &&
data.responseDate.results.length>0) {
renderResults(data.responseDate.results);
}
});
});
</script>
+3

All Articles