I have the following component that creates an MdDialog
export class SideNavsComponent implements OnInit, AfterViewInit, OnDestroy { eventDispatcher: Event
Padegal Saigiriraj is right. But instead of ViewRef_ use ViewRef. In short:
ViewRef_
ViewRef
setTimeout(() => { if (this.cdr && !(this.cdr as ViewRef).destroyed) { this.cdr.detectChanges(); } });
ViewRef stands for Angular view, specifically the host view as Angular site describes.