I can't seem to get typeahead to work with using key/value pairs. Since each key is different, and I want to only show the value as typeahead value.
Here is an example of an array I'm trying to use:
[
{"1":"partner1"},
{"2":"partner2"},
{"3":"partner3"},
{"4":"partner4"}
]
So, how should I go about iterating through each object and only grabbing the value for each (ie. "partner1") to display in the typeahead dropdown?
Thanks for your help!