Possible duplicate of [Triggering Angular2 change detection manually](http://stackoverflow.com/questions/34827334/triggering-angular2-change-detection-manually)
– ekoDec 08 '16 at 08:17
Possible duplicate (maybe even more similar than from @echonax): http://stackoverflow.com/questions/35105374/how-to-force-a-components-re-rendering-in-angular-2
– Petr AdamDec 08 '16 at 08:27
Its similar but does not actually address how to re-render a component.
I am able to update the values in the components UI but I need to re-render the component to allow an external JS library to act upon the new changes. Any suggestions?
– DaveDec 08 '16 at 08:31
*ngIf the component, set the flag to false, call the changedetectorref, than set the flag to true in setTimeout.. this is as dirty as possible and very bad but it worked :(
– Denko MancheskiDec 08 '16 at 09:04
The other suggestions didn't work as the values did update in the UI but the component does not re-render... Thanks @DenkoMancheski I'll give this a shot!
– DaveDec 08 '16 at 09:09
Going to change approach as there does not seem to be a clean way to implement what I'm looking for... Its seems like a simple task to fully re-render the component view...
– DaveDec 08 '16 at 09:20