I was wondering how to bind an action in an Ember.Select só when the user change the category i could perform other operations:
{{view Ember.Select class="form-control" id="PackCategory"
content=Categories
optionValuePath="content.categoryId"
optionLabelPath="content.name"
value=VendingAdminController.selectedPack.categoryId}}
and also how to specify the view as the target?
Thank you