Calendar
Introduction
Calendar app is based on Fullcallendar js https://fullcalendar.io/
. We have customized it a bit to give more interactive experience.
How to Setup
HTML Structure
<div class="calendar-wrap">
<div id="calendar"></div>
</div>
Dependency
CSS
<!-- Calendar CSS -->
<link href="vendors/fullcalendar/dist/fullcalendar.min.css" rel="stylesheet" type="text/css" />
JS
<!-- Fullcalendar JavaScript -->
<script src="vendors/moment/min/moment.min.js"></script>
<script src="vendors/jquery-ui.min.js"></script>
<script src="vendors/fullcalendar/dist/fullcalendar.min.js"></script>
<script src="dist/js/fullcalendar-data.js"></script>
Initialize
Include the following js code
to fullcalendar-data.js
, you can remove the components you do not need to have.
$('#calendar').fullCalendar({
----
});
Last updated
Was this helpful?