Hello to all, welcome to therichpost.com. In this post, I will tell you, How to Render Google Calendar Events In Fullcalendar? Fullcalendar is the best A JavaScript event calendar. Customizable and open source.
In this post, we will Render Google Calendar Events In Fullcalendar and here is the working code:
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <link href='/css/fullcalendar.min.css' rel='stylesheet' /> <link href='/css/fullcalendar.print.css' rel='stylesheet' media='print' /> <script src='/js/lib/moment.min.js'></script> <script src='/js/lib/jquery.min.js'></script> <script src='/js/fullcalendar.min.js'></script> <script src='/js/gcal.min.js'></script> <style> html, body { margin: 0; padding: 0; font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif; font-size: 14px; } #calendar { max-width: 900px; margin: 40px auto; } #calendar a.fc-event { color: #fff; /* bootstrap default styles make it black. undo */ } </style> <link href='https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css' rel='stylesheet' /> <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js'></script> <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js'></script> <script> $(function() { $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,listYear' }, displayEventTime: false, // don't show the time column in list view googleCalendarApiKey: 'MyAPIkey', // Single Calendar events: { googleCalendarId: 'gCalID-1', color: 'green', // an option! textColor: 'black', // an option! className: 'my-event-1 }, eventRender: function(eventObj, $el) { $el.popover({ title: eventObj.title, content: eventObj.description, trigger: 'hover', placement: 'top', container: 'body' }); } }); }); </script> </head> <body> <div id='calendar'></div> </body> </html>
There are so many tricks in fullcalendar and I will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
Recent Comments