After upgrading to RC4, some of my pages didn’t render after async operations.
I can’t show my code here since there are nested functions.
But basically I use Observable to retrieve ajax and then show it on the page.
I can see the code is all executed and console.log shows the updated variables, but the page didn’t re-render.
Any ideas? Or is there a way to force it re-render?
You can try to use NgZone to renter Angular zone.
I don’t know if this is the best solution, but I had to use it once in an app I’m building (changing values from variabled inside a setimeout were not reflecting in the view).