Adam Langsner
Adam Langsner

Reputation: 1286

Where is the Ext JS 4 ux package

I'm learning ExtJS 4 and I just figured out how to center containers/panels. In order to do this I needed to add the following at the top of my my app.js

Ext.Loader.setPath('Ext.ux', 'extjs/examples/ux');
Ext.require('Ext.ux.layout.Center');

The ux folder is in the example folder that came with ExtJS 4, I'm wondering why this package and some others are in the examples folder rather than being in the src folder with the rest of the framework.

Upvotes: 10

Views: 5484

Answers (1)

sha
sha

Reputation: 17860

Because Sencha considers them being "beta-code". Often code what was in ux will be included into main code branch in the following releases.

Upvotes: 7

Related Questions