I've read lots of other SO questions about Ember.Selects, but nothing near enough to work. I have dropdowns to filter certain fields in my returned data. The actual filtering is another issue, I'm just trying to get the dropdown populated at the moment.
Mine work with static arrays declared on my controller, as per the docs, but what I really want is to have the dropdown populated with unique values from the data so I don't have to maintain an options array.
I think all I need is the way to set the select's content
property to a field in the model, but just putting content=field
or contentBinding=field
has not worked.
Any suggestions or best practices on this would be much appreciated.