如何使用组合框 ID 将商店绑定到组合框,例如:
Ext.getCmp('combobox-id').store(unitStore);
组合框的名称-“configuration-unit-form-select-Merge-with-unit”商店是-“unitStore”;在 extjs 3.4
Do it like this:
Ext.getCmp('comboid').bindStore(unitStore);
Thats the proper way of binding a store to an existent combo.
Ext.getCmp(id) 将 id 作为参数而不是名称,所以这是您应该进行的第一个更改。文档链接
考虑 configuration-unit-form-select-Merge-with-unit 作为 Combo 的 id 属性,试试下面
Ext.getCmp('configuration-unit-form-select-Merge-with-unit').store.loadData(unitStore);