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
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
Share Improve this question asked Aug 25, 2014 at 16:44 Juan JardimJuan Jardim 2,2526 gold badges29 silver badges47 bronze badges 1- 2 You could follow the same pattern put forth in this question stackoverflow./questions/24154974/… – Kingpin2k Commented Aug 25, 2014 at 16:51
2 Answers
Reset to default 9Like kingpin suggested,
Just create a function in your controller that observes the value property of the {{select}}
onSelectedPackChange:function(){
//insert the code that needs to be excuted on change here
}.observes('selectedPack.categoryId')
The above code should be placed in your VendingAdminController
.
I don't have enough rep to ment on the previous answer but I think the ember syntax is observes not observe
onSelectedPackChange:function(){
//insert the code that needs to be excuted on change here
}.observes('selectedPack.categoryId')