我正在使用Extjs 3.4。我已经有一个JsonStore
的组合,它从Seam Component的方法接收JsonDataReader
个对象。
我想使用此商店值创建复选框项目,然后使用这些项目的复选框组。如果我有一个解决方案可以做到这一点并且不需要重写整个js文件,那就太好了。
答案 0 :(得分:0)
comboBox.store.each(function (record) {
items.push({
boxLabel: record.get(comboBox.displayField),
name: record.get(comboBox.valueField)
});
});
在这里演示http://ext4all.com/post/extjs-3-use-combo-store-to-create-checkboxgroup-items