我已经下载了Extjs3支持的SuperBoxSelect,但是我想在Extjs 4中使用它。
我已经在Extjs 4中根据需要定义了class
和extend
,并删除了Ex.ns()
和Ext.reg()
。
但是,当我运行代码时,出现了错误提示。
Uncaught TypeError: Cannot read property 'superclass' of undefined
所以我需要做些什么才能在Extjs 4中使用它?
码:
Ext.define('Ext.ux.form', {
extend: 'Ext.ux.form.SuperBoxSelect',
alias: 'widget.superboxselect',
.....
.....
});
最佳答案
使用此Ext.ux.form.field.BoxSelect-Intuitive-Multi-Select-ComboBox。
ExtJS3的插件不能在ExtJS4中使用。
关于extjs4 - Extjs 4中的SuperBoxSelect,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6410832/