@sonseiya Everything at first .. Sencha CMD is the most useful tool for sencha applications, it will not only generate your application, your MVC structure, models, stores, but it will also compile for IOS, Android, WINDOWS, focus on using the " Universal Application ", sencha CMD put all your code in one file and it will be exposed, cool!
Now ... to answer your question, yes, it is possible, sencha cmd uses the microloader script to create smart stuf based on your browser. But for your case you need to use the old way: ext.onready and create script tags in the html .. header for example:
<html> <head> <title>Ext JS </title> <link rel="stylesheet" type="text/css" href="path/ext-all.css" /> <script type="text/javascript" src="path/ext-all.js"></script> </head> <body> <script type="text/javascript"> Ext.onReady(function() { Ext.Msg.alert('Alert'); }); </script> </body> </html>
Note: you must use explication because there is no microloader that is responsible for reading all the dependencies.
source share