Filling dojo combobox with json data -
i have json object retrieved method contains user information. want set json object store of dojo combobox. please help.
so if understand correctly, want use single object store of combobox (so give 1 option?). if you're trying use array of json objects json store, suggest looking @ enter link description here.
as can see have store inside data
attribute array of json objects.
new memory({ data: [ ... ] });
then create combobox
, important things store
, searchattr
properties. store
property can connect store combobox , searchattr
property can property of json object visible thing should displayed in combobox.
Comments
Post a Comment