What is the smallest ExtJS package?

Does anyone know the minimum files needed for Ext JS 2.2? I know that on the ExtJS site there is a “build” function a small version of ExtJS (ext.js) as a replacement for ext-all.js but to minimize the size of ExtJS on the client. I am interested in minimizing what is on the server. The SDK currently ships with the following subdirectories:

Ext-2.2 /

adapter
air
build
docs
examples
resources
source

I think its pretty safe to delete examples, documents and air. However, are there other things that we can remove to make it smaller or is there a resource (besides the large javascript corpus source code) that documents the minimally necessary files?

+5
source share
2

JavaScript?

<link rel="stylesheet" type="text/css" href="../extjs/resources/css/ext-all.css">
<script type="text/javascript" src="../extjs/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="../extjs/ext-all.js"></script>

ext-all.css .. /extjs/resources/css, .

,

  • ExtJS//**/*
  • ExtJS///-base.js
  • ExtJS/Ext-all.js

Ext JS , , , Ext JS .

+8

All Articles