How to force a component's re-rendering in Angular 2?
How to force a component's re-rendering in Angular 2? For debug purposes working with Redux i'd like to force a component to re-render it's view, is that possible? Rendering happens after change detection. To force change detection, so that component property values that have changed get propagated to the DOM (and then the browser will render those changes in the view), here are some options: ApplicationRef.tick() - similar to Angular 1's $rootScope.$digest() -- i.e., check the full component tree NgZone.run(callback) - similar to $rootScope.$apply(callback) -- i.e., evaluate the callback