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 Calendar Selection Mode Component
Next article icon

Angular PrimeNG Form Calendar Popup and Inline Component

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

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 Inline Component.

The Calendar Component is used to input the user's date and time. By default, the calendar is shown in popup mode but the inline property can be used to display it in inline mode.

Angular PrimeNG Form Calendar Popup and Inline Properties:

  • inline: If this property is set to true, the calendar will be shown in inline mode.
 

Syntax:

<p-calendar      [inline]="true"      [(ngModel)]="....">  </p-calendar>

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: This example shows the popup mode of the calendar component. It is enabled by default.

app.component.html
<h2 style="color: green">GeeksforGeeks</h2> <h4>   Angular PrimeNG Form Calendar   Popup and Inline Component </h4>  <h3>Calendar In Popup Mode</h3> <p-calendar [(ngModel)]="calendarVal"> </p-calendar> 
app.component.ts
import { Component } from "@angular/core";  @Component({     selector: "app-root",     templateUrl: "./app.component.html", })  export class AppComponent {     calendarVal?: Date; } 
app.module.ts
import { NgModule } from '@angular/core'; import { BrowserModule }     from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule }     from '@angular/platform-browser/animations';  import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar';  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         FormsModule,         CalendarModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent], }) export class AppModule { } 

Output:

 

Example 2: In this example, we set the inline property of the calendar component to true to show it in inline mode.

app.component.html
<h2 style="color: green">GeeksforGeeks</h2> <h4>     Angular PrimeNG Form Calendar      Popup and Inline Component </h4>  <h3>Calendar In Popup Mode</h3> <p-calendar [inline]="true"             [(ngModel)]="calendarVal"> </p-calendar> 
app.component.ts
import { Component } from "@angular/core";  @Component({     selector: "app-root",     templateUrl: "./app.component.html", })  export class AppComponent {     calendarVal?: Date; } 
app.module.ts
import { NgModule } from '@angular/core'; import { BrowserModule }     from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule }     from '@angular/platform-browser/animations';  import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar';  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         FormsModule,         CalendarModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent], }) export class AppModule { } 

Output:

 

Reference: http://primefaces.org/primeng/calendar


Next Article
Angular PrimeNG Form Calendar Selection Mode Component
author
vpsop
Improve
Article Tags :
  • Web Technologies
  • AngularJS
  • Angular-PrimeNG
  • PrimeNG-Form

Similar Reads

  • 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
  • Angular PrimeNG Form Calendar Time 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 Time Component.
    3 min read
  • Angular PrimeNG Form Calendar Date Restriction Component
    Angular PrimeNG is a collection of Interactive UI components for Angular applications. Developers can use these components to make beautiful and responsive web interfaces in no time as most of the components have all the necessary functions implemented. In this article, we will be discussing the Ang
    3 min read
  • Angular PrimeNG Form Calendar Disable specific dates and/or days Component
    Angular PrimeNG is a collection of Interactive UI components for Angular applications. Developers can use these components to make beautiful and responsive web interfaces in no time as most of the components have all the necessary functions implemented. In this article, we will be discussing the Ang
    3 min read
  • Angular PrimeNG Form Calendar Button Bar 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 Form Button Bar component in Angular PrimeNG. The
    3 min read
  • Angular PrimeNG Form Calendar Multiple Months 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 Calendar Form with the Multiple Months component in Angu
    3 min read
  • Angular PrimeNG Form Calendar Custom Content 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 Custom Content
    3 min read
  • Angular PrimeNG Form Calendar Month Picker 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 Form Month Picker component in Angular PrimeNG. Ca
    3 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