Open In App

Angular ngx Bootstrap Popover Component

Improve
Improve
Like Article
Like
Save
Share
Report

Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites.

In this article we will know how to use Popover in angular ngx bootstrap. Popover is used to make a button that will be pop out by clicking on it.

Installation syntax:

npm install ngx-bootstrap --save 

Approach:

  • First, install the angular ngx bootstrap using the above-mentioned command.
  •  

  • Add the following script in index.html

    <link href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css” rel=”stylesheet”>

  • Import popover component in module.ts
  • In app.component.html make a popover component.
  • Serve the app using ng serve.

Example:

index.html




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8" />
    <base href="/" />
    <meta name="viewport" content=
        "width=device-width, initial-scale=1" />
    <link href=
        rel="stylesheet" />
  
    <link rel="icon" type="image/x-icon" href="favicon.ico" />
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link href=
        rel="stylesheet" />
    <link href=
        rel="stylesheet" />
</head>
  
<body class="mat-typography">
    <app-root></app-root>
</body>
  
</html>


app.component.html




<div id="pop">
    <button type="button" class="btn btn-default btn-success" 
        popover="Popover component in Angular ngx bootstrap."
        popoverTitle="GeeeksforGeeks" placement="top">
        Click here!
    </button>
  
    <br />
    <br />
  
    <button type="button" class="btn btn-default btn-warning"
        popover="Popover component in Angular ngx bootstrap."
        popoverTitle="GeeeksforGeeks" placement="right">
        Click here!
    </button>
  
    <br />
    <br />
  
    <button type="button" class="btn btn-default btn-danger" 
        popover="Popover component in Angular ngx bootstrap."
        popoverTitle="GeeeksforGeeks" placement="bottom">
        Click here!
    </button>
</div>


app.module.ts




import { NgModule } from '@angular/core';
  
// Importing forms module
import { FormsModule, ReactiveFormsModule }
    from '@angular/forms';
import { BrowserModule }
    from '@angular/platform-browser';
import { BrowserAnimationsModule }
    from '@angular/platform-browser/animations';
import { PopoverModule }
    from 'ngx-bootstrap/popover';
  
import { AppComponent } from './app.component';
  
@NgModule({
    bootstrap: [
        AppComponent
    ],
    declarations: [
        AppComponent
    ],
    imports: [
        FormsModule,
        BrowserModule,
        BrowserAnimationsModule,
        ReactiveFormsModule,
        PopoverModule.forRoot()
    ]
})
export class AppModule { }


app.component.css




#pop{
    margin: 50px;
    margin-top: 140px;
}


app.component.ts




import { Component, OnInit,LOCALE_ID } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent {
}


Output:



Last Updated : 07 Mar, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads