I am trying to implement a filteringselect(dojo) I am trying to get the values from a memory store. I am able to see the filteringselect on my page but it is not returning any thing and firebug keeps saying that store.fetch is not a function
Below is the code snippet. Any clues?
store1 = new dojo.store.Memory({data: fArr});
var f1 = new dijit.form.FilteringSelect({
name: "Ans",
searchAttr: "No",
placeHolder: "Select",
store: store1
}, "filteringSelect");
f1 .placeAt("s1");
Regards.
store:
dojo.data.ObjectStore({ objectStore:store1})this worked for me..