@@include('global/_head.html',{ "headTitle": "Vendor plugin", "fullcalendar": "true", "prism": "true", }) @@include('docs/_sidebar.html', {"page": "plugins"})
@@include('global/_page-header.html', {"PageHeader": "sticky-top"} )

Full calendar

How it works

FullCalendar is a full-sized drag & drop event calendar. This packages is an easily consumable combination of standard plugins. It makes the root namespace available as the FullCalendar browser global. View the docs ยป

Basic Example
<!-- plugin css file  -->
<link rel="stylesheet" href="assets/bundles/fullcalendar.min.css">

<!-- Plugin Js -->
<script src="assets/bundles/fullcalendar.bundle.js"></script>

<!-- Jquery Page Js -->
<script>
	document.addEventListener('DOMContentLoaded', function() {
	var calendarEl = document.getElementById('my_calendar');

	var calendar = new FullCalendar.Calendar(calendarEl, {
		timeZone: 'UTC',
		initialView: 'dayGridMonth',
		events: 'https://fullcalendar.io/demo-events.json',
		editable: true,
		selectable: true
	});

	calendar.render();
	});
</script>
Learn More @@include('docs/_quick-url.html')
@@include('global/_page-footer.html', {"PageFooter": ""} )
@@include('global/_full-screen-menu.html', {"divClass": ""} ) @@include('global/_need-help.html', {"divClass": "offcanvas-start"} ) @@include('global/_quick-access.html', {"divClass": "offcanvas-end"} ) @@include('global/_theme-setting.html', {"divClass": "offcanvas-end"} ) @@include('global/_site-map.html', {"divClass": "offcanvas-start sm"} ) @@include('global/_body-hero-img-2.html', {"bodyBgClass": "body-bg"} ) @@include('global/_plugin-script.html', { "fullcalendar": "true", "prism": "true", })