Ext.UX 包有压缩文件吗?就像分机一样?

Is there a minified file for Ext.UX package? just like ext-all?

我想使用 Ext.ux 包中的 livesearchgridpanel 组件, 这个包有像 ux-all.js 这样的缩小文件吗?就像 ext-all.js 一样? 我使用的是 Extjs 4.2.2 版本

不,extjs 4 没有构建 ux 包。但是您可以在 CI 或 Sencha CMD 的帮助下自行完成此操作(查看 sdk 中的 build.xml)。 Ext JS 4 还没有 app.json - 它出现在 5 版本

编辑

您还可以使用 help next 命令构建 ux 包:

sencha compile exclude --all and include --class 'Ext.ux.*' and concatenate --compress ./ext-ux.js

运行 根 sdk 上的此命令。

使用 help sencha cmd 构建 sdk 的可能配置。将此添加到 <target name=build 到 x-sencha-command 标记的末尾:

                    exclude
                        +all
                    and
                    include
                        -namespace=Ext.ux.*
                    optimize
                        -define-rewrite
                    and

                    concatenate
                        +append
                        +yui
                        -output-file=${build.dir}/ext-ux.js
                    and