Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一些不错的表单组合框(例如LovCombo或SuperBoxSelect)。
我有一个在网格中工作的组合框。但是如何在编辑器网格中包含MultiSelect ComboBox?最好的方法是什么?是否有任何现有的代码可以开始?
谢谢!
您是否尝试过使用xtypes控件提供的定义?例如,如果您查看 LovCombo,您会看到:
xtypes
Ext.reg('lovcombo', Ext.ux.form.LovCombo);
在您的 Grid 内部,对于每一列,定义编辑器:
editor: { xtype: 'lovcombo' ... }