@sudeep wrote:
template.hbs
{{foo data=value}}
route.jssetupController: function(controller, model) { controller.set('actions', { bar(param){ controller.set('value',param); } }); }
the action
bar
is called by different other components which changes thevalue
in controller. Thisvalue
is passed to thefoo
component. The problem is thefoo
component didn't get updated after change invalue
.How to re-render the component on change in controller ?
Posts: 1
Participants: 1