Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • AngularJS Tutorial
  • AngularJS Directives
  • AngularJS Functions
  • AngularJS Filters
  • AngularJS Examples
  • AngularJS Interview Questions
  • Angular ngx Bootstrap
  • AngularJS Cheat Sheet
  • AngularJS PrimeNG
  • JavaScript
  • Web Technology
Open In App
Next Article:
Angular PrimeNG Form TreeSelect Single Component
Next article icon

Angular PrimeNG Form ToggleButton Styling

Last Updated : 26 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Angular PrimeNG is an open-source front-end UI framework developed by PrimeTek for developing efficient and scalable angular applications. Using PrimeNG in their projects helps developers cut down the development time and focus on other important application areas. In this article, we will be seeing the Angular PrimeNG Form ToggleButton Styling.

The ToggleButton component is used to take input of boolean value from the user. Its label can be changed based on its current state using the onLabel and offLabel properties. The ToggleButton triggers only one event, that is, onChange. 

Angular PrimeNG Form ToggleButton Styling Classes:

  • p-togglebutton: It is the container element of the ToggleButton.
  • p-button-icon-left: It is the left icon element of the ToggleButton.
  • p-button-icon-right: It is the right icon element of the ToggleButton.
  • p-button-text: It is the text element of the ToggleButton.
 

Syntax:

// app.component.html  <p-toggleButton      [onLabel]="'...'"      [offLabel]="'...'"      ...      [(ngModel)]="...">  </p-toggleButton>    // app.component.css  :host ::ng-deep .structural-class{      // Custom CSS  }

Creating Angular Application and Installing the Module:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Finally, Install PrimeNG in your given directory.

npm install primeng --save  npm install primeicons --save

Project Structure: The project Structure will look like this after following the above steps:

Project Structure

Example 1: In this article, we used to "p-togglebutton" styling class to change the color of the togglebutton to green color.

  • app.component.html:
HTML
<h2 style="color: green">GeeksforGeeks</h2> <h3>     Angular PrimeNG Form     ToggleButton Styling Component </h3>  <p-toggleButton      [onLabel]="'Switched On'"     [offLabel]="'Switched Off'"     [(ngModel)]="isOn"> </p-toggleButton> 
  • app.component.css:
CSS
:host ::ng-deep .p-highlight.p-togglebutton, :host ::ng-deep .p-highlight.p-togglebutton:hover {     background: green;     border: none;     color: white; }  :host ::ng-deep .p-togglebutton:focus {     box-shadow: 0 0 0 0.2rem #07c700fb; } 
  • app.component.ts:
JavaScript
import { Component } from '@angular/core'; @Component({     selector: 'app-root',     templateUrl: './app.component.html',     styleUrls: ['./app.component.css'], })  export class AppComponent {     isOn = false; } 
  • app.module.ts:
JavaScript
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule }     from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { FormsModule } from '@angular/forms'; import { ToggleButtonModule } from 'primeng/togglebutton';  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         FormsModule,         ToggleButtonModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent], }) export class AppModule { } 

Output:

 

Example 2: In this article, we used the icon styling classes of the ToggleButton component to change the color and the size of the icons on the left and right of the label.

  • app.component.html:
HTML
<h2 style="color: green">GeeksforGeeks</h2> <h3>     Angular PrimeNG Form     ToggleButton Styling Component </h3>  <h3>Default ToggleButton</h3> <p-toggleButton      [onLabel]="'Switched On'"     [offLabel]="'Switched Off'"     [onIcon]="'pi pi-check'"     [offIcon]="'pi pi-times'"     [(ngModel)]="isOn_1"> </p-toggleButton>  <h3>Custom ToggleButton</h3> <p-toggleButton     class="tbCustom"     [onLabel]="'Switched On'"     [offLabel]="'Switched Off'"     [onIcon]="'pi pi-check'"     [offIcon]="'pi pi-times'"     [(ngModel)]="isOn_2"> </p-toggleButton> 
  • app.component.css:
CSS
:host ::ng-deep .tbCustom .p-button-icon-left {     color: red !important;     font-weight: 700;     font-size: 40px; } 
  • app.component.ts:
JavaScript
import { Component } from '@angular/core'; @Component({     selector: 'app-root',     templateUrl: './app.component.html',     styleUrls: ['./app.component.css'], })  export class AppComponent {     isOn_1 = false;     isOn_2 = false; } 
  • app.module.ts:
JavaScript
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule }     from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { FormsModule } from '@angular/forms'; import { ToggleButtonModule } from 'primeng/togglebutton';  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         FormsModule,         ToggleButtonModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent], }) export class AppModule { } 

Output:

 

Reference: https://primefaces.org/primeng/togglebutton


Next Article
Angular PrimeNG Form TreeSelect Single Component
author
vpsop
Improve
Article Tags :
  • Technical Scripter
  • Web Technologies
  • AngularJS
  • Technical Scripter 2022
  • Angular-PrimeNG
  • PrimeNG-Form

Similar Reads

    AutoComplete Component

    • Angular PrimeNG Form AutoComplete Dropdown Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use TreeTable Column Resize in Angular PrimeNG. AutoComplete Dropdo
      11 min read

    • Angular PrimeNG Form AutoComplete Multiple Selection Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use TreeTable Column Resize in Angular PrimeNG. AutoComplete Multip
      15+ min read

    • Angular PrimeNG Form AutoComplete Objects Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use Form AutoComplete Objects Component in Angular PrimeNG. Form Au
      15+ min read

    • Angular PrimeNG Form AutoComplete Force Selection Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use TreeTable Column Resize in Angular PrimeNG. Form AutoComplete F
      15+ min read

    • Angular PrimeNG Form AutoComplete Templating Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Form AutoComplete Templating Component in Angular PrimeNG. The Form
      4 min read

    • Angular PrimeNG Form AutoComplete Animation Configuration Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that helps to create an attractive user interface with enhanced functionality. These components can be utilized for great styling & are used to make responsive websites with very much ease. In this articl
      5 min read

    • Angular PrimeNG Form AutoComplete Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Form AutoComplete Properties Component in Angular PrimeNG. The Form
      8 min read

    • Angular PrimeNG Form AutoComplete Templates Component
      Angular PrimeNG is an open-source front-end UI framework developed by PrimeTek for developing efficient and scalable angular applications. Using PrimeNG in their projects helps developers to cut down the development time and focus on other important areas of the application. In this article, we will
      15+ min read

    • Angular PrimeNG Form AutoComplete Styling Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know about Angular PrimeNG Form AutoComplete Styling Component. The Form Au
      4 min read

    Calendar Component

    • Angular PrimeNG Form Calendar Popup and Inline Component
      Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Popup and Inlin
      3 min read

    • Angular PrimeNG Form Calendar Selection Mode Component
      Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Selection Mode
      3 min read

    • Angular PrimeNG Form Calendar DateFormat Component
      Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar DateFormat Comp
      4 min read

    CascadeSelect Component

    • Angular PrimeNG Form CascadeSelect Basic Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use TreeTable Column Resize in Angular PrimeNG. Angular PrimeNG For
      4 min read

    • Angular PrimeNG Form CascadeSelect Templating Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. CascadeSelect
      3 min read

    • Angular PrimeNG Form CascadeSelect Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Angular PrimeNG Form CascadeSelect Properties Component. Th
      5 min read

    • Angular PrimeNG Form CascadeSelect Templates Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use Angular PrimeNG Form CascadeSelect Templates Component. The Cas
      4 min read

    • Angular PrimeNG Form CascadeSelect Styling Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the  Form CascadeSelect Styling Component in Angular PrimeNG
      4 min read

    Checkbox Component

    • Angular PrimeNG Form Checkbox Basic Component
      Angular PrimeNG is a UI component library for Angular Applications. It offers many pre-built themes and UI components for a variety of tasks like inputs, menus, charts, Buttons, etc. In this article, we will be seeing Angular PrimeNG Form Checkbox Basic Component. The Checkbox component provided by
      3 min read

    • Angular PrimeNG Form Checkbox Multiple Component
      Angular PrimeNG is a UI component library for Angular Applications. It offers many pre-built themes and UI components for a variety of tasks like inputs, menus, charts, Buttons, etc. In this article, we will see the Angular PrimeNG Form Checkbox Multiple Component. The Checkbox Component provided by
      3 min read

    • Angular PrimeNG Form Checkbox Dynamic Values, Preselection, Value Binding and Disabled Option
      Angular PrimeNG is a UI component library for Angular Applications. It offers many pre-built themes and UI components for a variety of tasks like inputs, menus, charts, Buttons, etc. In this article, we will be seeing Angular PrimeNG Form Checkbox Dynamic Values, Preselection, Value Binding, and Dis
      3 min read

    • Angular PrimeNG Form Checkbox Label Component
      Angular PrimeNG is an open-source library that consists of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Form Checkbox Label Component. The Checkbox component provi
      4 min read

    • Angular PrimeNG Form Checkbox Boolean Value Component
      Angular PrimeNG is a UI component library for Angular Applications. It offers many pre-built themes and UI components for a variety of tasks like inputs, menus, charts, Buttons, etc. In this article, we will be seeing the Form Checkbox Boolean Value Component in Angular PrimeNG. The Checkbox compone
      3 min read

    • Angular PrimeNG Form Checkbox Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Checkbox Prope
      4 min read

    • Angular PrimeNG Form Checkbox Events Component
      Angular PrimeNG is an open-source front-end UI library that has many native Angular UI components which help developers to build a fast and scalable web solution. In this article, we will be seeing Angular PrimeNG Form Checkbox Events Component. The Checkbox Component provided by PrimeNG is an exten
      4 min read

    • Angular PrimeNG Form Checkbox Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Checkbox Compo
      5 min read

    • Angular PrimeNG Form Checkbox Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Checkbox Compo
      5 min read

    Chips Component

    • Angular PrimeNG Form Chips Comma Separator Component
      Angular PrimeNG is an open-source library that consists of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Form Chips Comma Separator Component. The Chips Component i
      3 min read

    • Angular PrimeNG Form Chips Template Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap.  Chips Templat
      3 min read

    • Angular PrimeNG Form Chips Custom Content Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Angular PrimeNG Form Chips Custom Content Component. The Ch
      3 min read

    • Angular PrimeNG Form Chips Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Chips Componen
      4 min read

    • Angular PrimeNG Form Chips Events Component
      Angular PrimeNG is an open-source library that consists of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will Angular PrimeNG Form Chips Events Component. The Form Chips Component in PrimeN
      3 min read

    • Angular PrimeNG Form Chips Template Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap.  Chips Templat
      3 min read

    ColorPicker Component

    • Angular PrimeNG Form ColorPicker Formats Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Angular PrimeNG Form ColorPicker Formats Component. The Col
      3 min read

    • Angular PrimeNG Form ColorPicker Overlay and Inline Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Angular PrimeNG Form ColorPicker Overlay and Inline Compone
      3 min read

    • Angular PrimeNG Form ColorPicker Animation Configuration Component
      Angular PrimeNG is a front-end UI component library for Angular Applications. It is developed and maintained by PrimeTek. PrimeNG helps developers to create stunning web interfaces in less time using pre-built components and themes. In this article, we will discuss the Angular PrimeNG Form ColorPick
      3 min read

    • Angular PrimeNG Form ColorPicker Properties Component
      Angular PrimeNG is a front-end UI component library for Angular Applications. It is developed and maintained by PrimeTek. PrimeNG helps developers to create stunning web interfaces in less time using pre-built components and themes. In this article, we will discuss the Angular PrimeNG Form ColorPick
      4 min read

    • Angular PrimeNG Form ColorPicker Events Component
      Angular PrimeNG is a front-end UI component library for Angular Applications. It is developed and maintained by PrimeTek. PrimeNG helps developers to create stunning web interfaces in less time using pre-built components and themes. In this article, we will discuss the Angular PrimeNG Form ColorPick
      3 min read

    • Angular PrimeNG Form ColorPicker Styling Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Angular PrimeNG Form ColorPicker Styling Component. The ColorPicker
      3 min read

    Dropdown Component

    • Angular PrimeNG Form Dropdown Basic Component
      Angular PrimeNG is an open-source front-end UI framework developed by PrimeTek for developing efficient and scalable angular applications. Using PrimeNG in their projects helps developers to cut down the development time and focus on other important areas of the application. In this article, we will
      3 min read

    • Angular PrimeNG Form Dropdown Group Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the calendar component in angular ngx bootstrap. Dropdown G
      5 min read

    • Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the calendar component in angular ngx bootstrap. Dropdown A
      5 min read

    Editor Component

    • Angular PrimeNG Form Editor Default Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form Editor Default Component in Angular PrimeNG. We will a
      3 min read

    • Angular PrimeNG Form Editor Custom Toolbar Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form Editor Custom Toolbar Component in Angular PrimeNG. We
      3 min read

    • Angular PrimeNG Form Editor Custom Toolbar Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form Editor Custom Toolbar Component in Angular PrimeNG. We
      3 min read

    • Angular PrimeNG Form Editor Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will see how to use the Form Editor Properties Component in Angular PrimeNG. The Form E
      4 min read

    • Angular PrimeNG Form Editor Events
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Form Editor Events. The Form Editor is a Quill-based ri
      3 min read

    • Angular PrimeNG Form Editor Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the Form Editor Component in Angular PrimeNG. The Form Edito
      3 min read

    • Angular PrimeNG Form Editor Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the Form Editor Component in Angular PrimeNG. The Form Edito
      3 min read

    • Angular PrimeNG Form Editor Styling Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Form Editor Styling Component. The Form Editor is a Qui
      3 min read

    InputGroup Component

    • Angular PrimeNG Form InputGroup Addons Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the InputGroup Addons Component in Angular PrimeNG. The In
      3 min read

    • Angular PrimeNG Form InputGroup Multiple Addons Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the InputGroup Multiple Addons Component in Angular PrimeN
      3 min read

    • Angular PrimeNG Form InputGroup Button Addons Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the InputGroup Button Addons Component in Angular PrimeNG.
      3 min read

    • Angular PrimeNG InvalidState Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the InvalidState component in angular primeNG. InvalidState
      2 min read

    InputMask Component

    • Angular PrimeNG Form InputMask Mask Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form InputMask Mask Component in Angular PrimeNG. We will a
      3 min read

    • Angular PrimeNG Form InputMask SlotChar Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form InputMask SlotChar Component in Angular PrimeNG. We wi
      3 min read

    • Angular PrimeNG Form InputMask Optional Values Component
      Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will be seeing Angular PrimeNG Form InputMask Optional
      3 min read

    • Angular PrimeNG Form InputMask Properties Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the calendar component in angular ngx bootstrap. InputMask
      4 min read

    • Angular PrimeNG Form InputMask Events Component
      Angular PrimeNG is a collection of Angular UI components. It is an open-source library developed by PrimeTek. It has many ready-to-use components that make it one of the top choices of angular developers when it comes to choosing a UI library. In this article, we will see the Angular PrimeNG Form In
      4 min read

    • Angular PrimeNG Form InputMask Mask Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form InputMask Mask Component in Angular PrimeNG. We will a
      3 min read

    • Angular PrimeNG Form InputMask Styling Component
      Angular PrimeNG is a collection of Angular UI components. It is an open-source library developed by PrimeTek. It has many ready-to-use components that make it one of the top choices of angular developers when it comes to choosing a UI library. In this article, we will see the Angular PrimeNG Form In
      4 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences