I want to use livesearchgridpanel component which is there in Ext.ux package , is there a minified file like ux-all.js for this package? just like ext-all.js ? I am using Extjs 4.2.2 version
No, extjs 4 has no builded ux package. But you can do this self with help your CI or Sencha CMD(look at build.xml in sdk). Ext JS 4 hasn't app.json
- it appeared in 5 version
EDIT
Also you can build ux package with help next command:
sencha compile exclude --all and include --class 'Ext.ux.*' and concatenate --compress ./ext-ux.js
Run this command on root sdk.
Possible config for build sdk with help sencha cmd. Add this to <target name=build
to end of x-sencha-command tag:
exclude
+all
and
include
-namespace=Ext.ux.*
optimize
-define-rewrite
and
concatenate
+append
+yui
-output-file=${build.dir}/ext-ux.js
and