Search code examples
ember.jsember-dataember-cli

Ember reload, rerender component template


I have a template in which I have table. I am creating a component to contain table and filter criteria. Whenever there's filter criteria change I need to update the table. For that I want to rerender the table from component action whenever the component action is invoked.

How to rerender/refresh the component from its action?


Solution

  • It is automatically done in ember. Whenever there is a change in data it will automatically render. The problem I had was with the tag, which did not have hook for attribute change.