Get started with ext-core CDN
MIT licensed
Ext-Core: Foundational library with events, utility functions, and base classes for Sencha Ext JS.
Tags:- framework
- toolkit
- desktop
- popular
Stable version
Copied!
How to start using ext-core CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with ext-core CDN - cdnhub.io</title>
<link rel="stylesheet" href="https://cdn.sencha.io/extjs/gpl/3.1.0/packages/ext-all.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/loader.min.js"></script>
<script src="https://cdn.cdnhub.io/ext-core/3.1.0/ext-core.min.js"></script>
</head>
<body>
<div id="app"></div>
<script>
require({
config: {
baseURL: '/',
paths: {
Ext: 'Ext'
}
},
onReady: function() {
Ext.onReady(function() {
// Your Ext JS code here
var messageBox = Ext.Msg.prompt('Hello', 'What is your name?');
messageBox.show();
});
}
});
</script>
</body>
</html>
Copied!
Copied!