ember.js - How to use Ember.Select in emberjs? -
i have posted code here.
i new ember.js , still in learning phase.here trying build simple crud program.
i trying use select in above crud program using ember.select not able use it.
{{view ember.select contentbinding="objtype.content" valuebinding="objtype.selected" prompt="please select type" }}
how use ember.select in above crud program create/update record?
change this:
objtype: ember.object.create({ selected: null, content: ['1', 2] })
to this:
objtype: ember.object.create({ selected: null, content: ['1', 2] })
you should notice changed 'o' 'o', , need update select use right property name
Comments
Post a Comment