Categories

Tuesday, April 16, 2024
#919814419350 therichposts@gmail.com
Angular 10Angular 9Bootstrap 4Jquery

Angular 10 Bootstrap Toast Working Example

angular-10-bootstrap-toasts-working

Hello to all, welcome to therichpost.com. In this post, I will tell you, Angular 10 Bootstrap Toast Working Example.

Guy’s here is the updated post for Angular 11/12 Bootstrap 5 Toast Working.

Angular bootstrap toast working
Angular 10 Bootstrap Toast Working Example

Angular and bootstrap combination is amazing and angular 12 came. If you are new in angular then you can check below links:

Angular Learning from Scratch

Angular 10 Tutorials

Angular Toast

Here are the complete working steps and please follow carefully:

1. Here are the basics commands to install angular 10 on your system:

npm install -g @angular/cli 

ng new angularpopup //Create new Angular Project

$ cd angularpopup // Go inside the Angular Project Folder

ng serve --open // Run and Open the Angular Project

http://localhost:4200/ // Working Angular Project Url

2. After done with above, you need to run below commands to set bootstrap environment into your angular 10 application:

npm install --save bootstrap

npm install jquery --save

npm install --save @types/jquery

npm install popper.js --save

3. Now you need to add below code into your angular.json file:

...
"styles": [
              "src/styles.css",
              "node_modules/bootstrap/dist/css/bootstrap.min.css"
          ],
"scripts": ["node_modules/jquery/dist/jquery.min.js", 
              "node_modules/popper.js/dist/umd/popper.min.js", 
              "node_modules/bootstrap/dist/js/bootstrap.min.js"
           ]
...

4. Now you need to add below code into your src/app/app.component.ts file:

import { Component } from '@angular/core';
declare var $:any;
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  ngOnInit() {
      $(".showtoast").click(function(){
	  $('.toast').toast('show');
	  })
  }
}

5. Now you need to add below code into src/app/app.component.html file:

<button class="btn btn-primary showtoast">Show Toast</button>
<div class="toast">
  <div class="toast-header">
    Toast Header
  </div>
  <div class="toast-body">
    Some text inside the toast body
  </div>
</div>

In the end, don’t forgot to run ng serve command. If you have any query then do comment below.

Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.

Jassa

Thank you.

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

7 Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.