angular 10 fullcalendar add custom buttonangular 10 fullcalendar add custom button

Hello to all, welcome to therichpost.com. In this post, I will tell you, Angular 8/9/10 Fullcalendar Add Custom Button.

Angular 10 came and I am very happy for this.

angular 10 fullcalendar add custom button
Angular 10 fullcalendar add custom button

Here is the simple and easy code snippet and please follow carefully:

1. Very first, you need to add fullcalendar into your angular application and for this, please follow below tutorial link:

Implement FullCalendar into Angular 8/9/10

2. After follow the properly point number 1, open your app.component.ts file and add below code into it:

Check line number 4-16 and make the custom button in fullcalendar and I am making new post also that how to add new events in angular 8/9/10 fullcalendar.

export class AppComponent {
  ...
  calendarOptions: CalendarOptions = {
       customButtons: {
         myCustomButton: {
         text: 'Add Event',
         click: function() {
                alert("Custom Button");
         }
       }
     },
     headerToolbar: {
      right: 'today prev,next',
      left: 'title',
      center:'myCustomButton'
    },
    initialView: 'dayGridMonth',
    dateClick: this.handleDateClick.bind(this), // bind is important!
    events: [
      { title: 'event 1', date: '2020-06-27' },
      { title: 'event 2', date: '2020-06-30' }
    ]
  };
  handleDateClick(arg) {
    alert('date click! ' + arg.dateStr)
  }
}

 

This is it and if you have any kind of query then please do comment below.

Jassa

Thanks.

By therichpost

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 19, MedusaJs, Next.js, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

4 thoughts on “Angular 8/9/10 Fullcalendar Add Custom Button”
  1. Is HTML not needed for the button?

    Also, is : ‘how to add new events in angular’ available?

Leave a Reply

Your email address will not be published. Required fields are marked *

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