如何使用组合框ID将商店绑定到Combobox,如:
Ext.getCmp('combobox-id').store(unitStore);
combpobox的名称 - “configuration-unit-form-select-Merge-with-unit” 商店是 - “unitStore”; IN extjs 3.4
答案 0 :(得分:2)
这样做:
Ext.getCmp('comboid').bindStore(unitStore);
这是将商店绑定到现有组合的正确方法。
答案 1 :(得分:2)
Ext.getCmp(id)将id作为参数而不是name,因此,这是您应该进行的第一个更改。 Doc Link
考虑使用configuration-unit-form-select-Merge-with-unit作为Combo的id属性,请尝试下面
Ext.getCmp('configuration-unit-form-select-Merge-with-unit').store.loadData(unitStore);