I'm looking to disable 'changeDetection' for the parent component while enabling it for the child component. Can you provide an example of how this can be achieved?
The parent component contains static data, meaning change detection is not necessary. However, performance issues in IE 11 have led us to removing change detection in the parent component. On the other hand, the child component includes forms and therefore requires change detection. How can I implement change detection for only the child component?
Thank you