X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/view/multisort/multisort.js diff --git a/examples/view/multisort/multisort.js b/examples/view/multisort/multisort.js new file mode 100644 index 00000000..5f29721e --- /dev/null +++ b/examples/view/multisort/multisort.js @@ -0,0 +1,18 @@ +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() + }); +}); \ No newline at end of file