I'm wondering if this is a bug or if I'm just missing something...
On an ember.Select you can set the 'selection' to a computed alias and it works.
selection: Em.computed.alias('parentView.controller.test3')
You can set 'valueBinding' to a path and it works.
valueBinding: 'parentView.controller.test2'
But you can't set 'value' to a computed alias, that does not work.
value: Em.computed.alias('parentView.controller.test')
I've included a jsfiddle that demonstrates this on ember latest. Am I missing something here? I thought I read that bindings in views were going to be silently deprecated and I've been trying to use Em.computed.alias() instead.