最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Binding Action in Ember.Select - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 9

Like 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')

发布评论

评论列表(0)

  1. 暂无评论