我正在尝试更改FilteringSelect
小部件的内容。
我似乎继续遇到这个错误:
Uncaught TypeError: Cannot call method 'toString' of undefined
我尝试更改store
以使用MemoryStore
,我尝试克隆数据并使用setData(data)
。
我尝试用我的新项目调用store.put(newItem)
。这似乎是我第一次做事情,但在连续的变化中,我通常最终得到toString
- 错误。
<select dojoType="dijit.form.FilteringSelect" id="wellsSelectCombo" onChange="selectWell(this.value);" searchAttr="label">
<option value="Select well(s) on map..."></option>
var item = {
label: label,
id: "feature_content_pane_" + i,
index: i
}; var wellsSelectCombo = dijit.byId('wellsSelectCombo');
wellsSelectCombo.store.put(item);