1

如何使用组合框 ID 将商店绑定到组合框,例如:

Ext.getCmp('combobox-id').store(unitStore);

组合框的名称-“configuration-unit-form-select-Merge-with-unit”商店是-“unitStore”;在 extjs 3.4

4

2 回答 2

2

Do it like this:

Ext.getCmp('comboid').bindStore(unitStore);

Thats the proper way of binding a store to an existent combo.

于 2013-03-07T15:30:02.653 回答
2

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);
于 2013-03-07T16:25:35.807 回答