Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / view / multisort / multisort.js
1 Ext.Loader.setConfig({ enabled: true});
2 Ext.Loader.setPath('Ext.multisort', '.');
3 Ext.Loader.setPath('Ext.ux', '../../ux/');
4
5 Ext.require([
6     'Ext.data.Store',
7     'Ext.data.proxy.Ajax',
8     'Ext.multisort.Panel',
9     'Ext.multisort.SortButton',
10     'Ext.ux.BoxReorderer',
11     'Ext.ux.DataView.Animated'
12 ]);
13
14 Ext.onReady(function() {
15     Ext.create('Ext.multisort.Panel', {
16         renderTo: Ext.getBody()
17     });
18 });