I want to use the MultiSelect from 3.3 in Ext JS 4, as described in this previous question:
It seems like the way to register xtypes has changed in Ext JS 4. When I try to import this widget,along with ItemSelector.js, I get an error on Ext.reg().
Ext.reg('multiselect', Ext.ux.form.MultiSelect);
//backwards compat
Ext.ux.Multiselect = Ext.ux.form.MultiSelect;
How do I change wdigets to get them to work in Ext JS 4?
Ext.ComponentMgr.registerTypewhich is whereExt.regused to point. I'd post an answer, but I haven't actually got a working Ext4 application yet... – Hemlock Mar 23 '11 at 19:26