/ext-4.1.0_b3/examples/view/multisort/multisort.js
https://bitbucket.org/srogerf/javascript · JavaScript · 18 lines · 16 code · 2 blank · 0 comment · 0 complexity · f8a17ba06b02239309f2912bcc41f621 MD5 · raw file
- Ext.Loader.setConfig({ enabled: true});
- Ext.Loader.setPath('Ext.multisort', '.');
- Ext.Loader.setPath('Ext.ux', '../../ux/');
- Ext.require([
- 'Ext.data.Store',
- 'Ext.data.proxy.Ajax',
- 'Ext.multisort.Panel',
- 'Ext.multisort.SortButton',
- 'Ext.ux.BoxReorderer',
- 'Ext.ux.DataView.Animated'
- ]);
- Ext.onReady(function() {
- Ext.create('Ext.multisort.Panel', {
- renderTo: Ext.getBody()
- });
- });