micahblu
micahblu

Reputation: 5212

Ember.Select not working?

I'm working off of sample code from http://emberjs.com/api/classes/Ember.Select.html and it doesn't appear to be working? I get this error:

Assertion failed: The value that #each loops over must be an Array. You passed names ember.js:394 Uncaught TypeError: Object names has no method 'addArrayObserver'

Here's my jsbin: http://jsbin.com/kogav/1/

Thanks for any help

Upvotes: 0

Views: 45

Answers (1)

chopper
chopper

Reputation: 6709

Change it to

{{view Ember.Select contentBinding="names"}}

See http://jsbin.com/gocel/1/

Upvotes: 1

Related Questions