NgbModal.open not working in Angular 4
I want to display a message in a modal using angular 4.0.0 and ng-bootstrap 1.0.0-beta.4 but it does not display the modal. app-module.ts @NgModule({ // ... declarations: [ LoginComponent ], imports: [ // ... NgbModule.forRoot() ], entryComponents: [LoginComponent], }) export class AppModule { } login.component.ts @Component({ selector: 'app-login', templateUrl: './login.component.html', styleUrls: ['./login.component.css'] }) export class LoginComponent { @ViewChild('examplemodal') private modalRef: TemplateRef<any>; constructor(private modalService: NgbModal) { } //.... some event that fires