Hello guys, this article is about how to add ng-bootstrapped modals within your components in Angular application. Going through this article, a very beginner can learn how to add and use different bootstrapped gadgets and other stuffs with your Angular application.
I have already created a very simple project but not yet bootstrapped. I just need to add a popup message box when clicking on the button on the page.
Below is how my application looks right now and I have used only app.component.ts and app.component.html files for this.
Now let's begin to add the requirements to continue.
Step 1
npm install --save @ng-bootstrap/ng-bootstrap
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
( For now, )
Step 2
- Go to ng-bootstrap site and find the bootstrap code section for Modal.(Modal-ng-bootstrap)
- Within the section I have circled in , when you click the button with name "</>Code", you can find a code file with the name modal-component.ts with the following code snippet.
- Here , in the above code, you can find two classes as NgbdModalContent (squared in red colour) and NgbdModalComponent (squared in purple colour).
- Now it's time to copy code from this snippet and paste it into your app.component.ts file.
- First, import the modules shown in Section 1 in the above image into your app.component.ts file.
- Secondly, Copy the whole code in section two and paste it at the very end of the app.component.ts file.
- Thirdly, inject the service into the constructor of your AppComponent class in app.component.ts file ,as shown in section 3 .
- And, Lastly, Copy the method "copy()" shown in the section 4 as a netive method of the AppComponent class.
- This method can be used in an (click) event within the button in html file now.
- Enter NgbdModalContent class in declarations array as well as an entryComponent in app.module.ts file.
Step 3
Finally
This is my app.component.ts file and html file .
Final View when clicked on the button on the page,
Enjoy bootstrap!!!
Top comments (0)