What is the smallest ExtJS package? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:55:18Z http://stackoverflow.com/feeds/question/214348 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214348/what-is-the-smallest-extjs-package 1 What is the smallest ExtJS package? fuentesjr 2008-10-18T01:25:47Z 2009-05-25T01:26:15Z <p>Does anyone know the bare minimum files required for Ext JS 2.2? I know the ExtJS site has a feature to <a href="http://extjs.com/products/extjs/build/" rel="nofollow">"build"</a> a small version of ExtJS (ext.js) as a replacement for ext-all.js but that's for minimizing the size of ExtJS on the client. I'm interested in minimizing what's on the server. Currently the SDK comes with the following subdirectories:</p> <h2>ext-2.2/</h2> <pre><code>adapter air build docs examples resources source </code></pre> <p>I think its pretty safe to remove examples, docs, and air. However, are there other things we can remove to make this smaller or is there a resource (besides the large javascript source code corpus) that documents the minimum required files?</p> http://stackoverflow.com/questions/214348/what-is-the-smallest-extjs-package/214390#214390 4 Answer by methym for What is the smallest ExtJS package? methym 2008-10-18T02:01:46Z 2008-10-18T02:01:46Z <p>This link explains the include order <a href="http://extjs.com/learn/Ext_Getting_Started#What_is_the_proper_include_order_for_my_JavaScript_files.3F" rel="nofollow">What is the proper include order for my JavaScript files?</a></p> <p>This is the minimum include set</p> <pre><code>&lt;link rel="stylesheet" type="text/css" href="../extjs/resources/css/ext-all.css"&gt; &lt;script type="text/javascript" src="../extjs/adapter/ext/ext-base.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="../extjs/ext-all.js"&gt;&lt;/script&gt; </code></pre> <p>The ext-all.css depends on files in ../extjs/resources/css so you should include that entire directory structure also.</p> <p>So you'd need the following files at a minimum</p> <ul> <li>extjs/resources/*<em>/</em></li> <li>extjs/adapter/ext/ext-base.js</li> <li>extjs/ext-all.js</li> </ul> <p>If you're not using Ext JS for any of the UI components then you don't need any of the stylesheets and supporting images, but in that case you'd have to question why you're usiing Ext JS since that's it's strong point.</p> http://stackoverflow.com/questions/214348/what-is-the-smallest-extjs-package/905037#905037 0 Answer by Ballsacian1 for What is the smallest ExtJS package? Ballsacian1 2009-05-25T01:26:15Z 2009-05-25T01:26:15Z <p>Ext Core<br><a href="http://extjs.com/products/extcore/" rel="nofollow">http://extjs.com/products/extcore/</a></p>