reactjs

Hello, welcome to therichpost.com. In this post, I will tell you, How to get event title on event click fullcalendar in reactjs? Reactjs is a Javascript Library to build user interface.

In this post, we will implement fullcalendar in reactjs and this is very interesting. First, you need to run below  command into your command prompt to install fullcalendar package into your reactjs app:

npm install fullcalendar-reactwrapper --save

In this post, I will get event title while click on event and I will come with more tricks with combination of reactjs and fullcalendar.

Here is the working image of fullcalendar in reactjs:

fullcalendar-in-reactjs

After this, you need to add below code into your index.js file and see how fullcalendar event click works:
import React from 'react';
import ReactDOM from 'react-dom';
import FullCalendar from 'fullcalendar-reactwrapper';
import 'fullcalendar/dist/fullcalendar.css';
class Hello extends React.Component{
    constructor(props) {
    super(props);
    this.state = {
    events:[
                {
                    title: 'All Day Event',
                    start: '2018-06-05'
                },
                {
                    title: 'Long Event',
                    start: '2018-06-02',
                    end: '2018-06-04'
                }
            ],		
    }
  }
 
  render() {
    return (
      <div id="example-component">
        <FullCalendar
             id = "your-custom-ID"
         header = {{
            left: 'prev,next today myCustomButton',
            center: 'title',
            right: 'month,basicWeek,basicDay'
        }}
         
        navLinks= {true} // can click day/week names to navigate views
        editable= {true}
        eventLimit= {true} // allow "more" link when too many events
        events = {this.state.events}	
    eventClick = {function(calEvent, jsEvent, view, resourceObj) {alert(calEvent.title)}}
    />
      </div>
    );
  }
  }

  ReactDOM.render(<Hello />, document.getElementById('root'));

 I will do more with reactjs. If you have any query related to this post then please comment below.

 

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.

6 thoughts on “How to get event title on event click fullcalendar in reactjs?”
  1. hi bro, Is it possible to add an event by clicking on the date and how to sync events to Gmail or Phone Calendar or outlook. please help me bro.

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.