hi!
I need to minimize an ExtJs application by building an production-file with only the needed ExtJs classes.
If I use ext-core and Ext.Loader, ExtJs loads for this
Code:
Ext.create('Ext.Component',{
html:'test',
renderTo: Ext.getBody()
});
over 200 files.
When this is compressed and obfuscated, the final app-all.js has 660 KB. With the ext-core.js the complete app has, only for displaying an div with "test", 860 KB.
Is there an option to select only the files with Ext.Loader which I really need?
ExtJs is a very nice framework for big applications. But if want to use only some elements in a website, it generates, compared with other frameworks, a huge traffic.