3rd-Party Plugins

FullCalendar

FullCalendar is a full-sized drag & drop event calendar that integrates seamlessly with the Metronic Tailwind CSS toolkit. It is an open-source project licensed under MIT.

Installation

FullCalendar is installed via NPM as a third-party dependency by referring to package.json . During the Theme Installation process, it is compiled by the Build Tools into the /dist/assets/vendors/fullcalendar directory.

Require Assets

To use FullCalendar in your pages, you need to include the following dependency assets in the order shown.
				
					<!DOCTYPE html>
<html>
 <head>
  <!--Core styles (includes FullCalendar styling via fullcalendar.css component)-->
  <link href="/dist/assets/css/styles.css" rel="stylesheet"/>
 </head>
 <body>
  <div id="calendar">
  </div>
  <!--Core bundle script-->
  <script src="/dist/assets/js/core.bundle.js">
  </script>
  <!--Vendor script -->
  <script src="/dist/assets/vendors/fullcalendar/index.global.min.js">
  </script>
  <!--Custom script -->
  <script src="/dist/assets/js/pages/plugins/fullcalendar/basic.js">
  </script>
 </body>
</html>

				
			

Basic

A basic FullCalendar month view example demonstrating the default calendar display with Metronic Tailwind CSS styling. This example shows how to initialize a simple calendar that automatically adapts to the Metronic design system.

Views

Demonstrates different calendar views (month, week, day, agenda) with view switching functionality. All views automatically use Metronic Tailwind CSS styling for consistent appearance.

Events

Displays a calendar with sample events. Events automatically use Metronic Tailwind CSS styling for consistent appearance.

Drag & Drop

Demonstrates dragging events to different dates. The calendar automatically uses Metronic Tailwind CSS styling.

Resize

Demonstrates resizing event duration. The calendar automatically uses Metronic Tailwind CSS styling.

Custom Rendering

Demonstrates custom event rendering while maintaining Metronic Tailwind CSS base styling.
Demonstrates opening Metronic modals for event creation/editing with integration of Metronic form components. The calendar automatically uses Metronic Tailwind CSS styling.