fullcalendar-scheduler

popular esm cjs
Easily render a full-sized drag & drop calendar with a combination of standard & premium plugins
Keywords
calendareventfull-sizedfullcalendarschedulerresource
INSTALL
Type:
Version:
- Static
- Latest Patch
- Latest Minor
- Latest Major
- 7.0.0-rc.0
- 7.0.0-beta.4
- 7.0.0-beta.3
- 7.0.0-beta.1
- 7.0.0-beta.0
- 6.1.15
- 6.1.14
- 6.1.13
- 6.1.12
- 6.1.11
- 6.1.10
- 6.1.9
- 6.1.8
- 6.1.7
- 6.1.6
- 6.1.5
- 6.1.4
- 6.1.3
- 6.1.1
- 6.1.0
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 6.0.0-beta.4
- 6.0.0-beta.3
- 6.0.0-beta.2
- 6.0.0-beta.1
- 5.11.5
- 5.11.4
- 5.11.3
- 5.11.2
- 5.11.0
- 5.10.2
- 5.10.1
- 5.10.0
- 5.9.0
- 5.8.0
- 5.7.2
- 5.7.0
- 5.6.0
- 5.5.1
- 5.5.0
- 5.4.0
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.0
- 5.1.0
- 5.0.1
- 5.0.0
- 5.0.0-rc
- 5.0.0-beta.4
- 5.0.0-beta.3
- 5.0.0-beta.2
- 5.0.0-beta.1
- 4.0.0-alpha.4
- 4.0.0-alpha.3
- 4.0.0-alpha.2
- 3.10.4
- 1.10.4
- 1.10.3
- 1.10.2
- 1.10.1
- 1.10.0
- 1.9.5
- 1.9.4
- 1.9.3
- 1.9.2
- 1.9.1
- 1.9.0
- 1.8.1
- 1.8.0
- 1.7.1
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.3.0-beta
- 1.2.1
- 1.2.0
- 1.1.0
- 1.1.0-beta
- 1.0.2
- 1.0.1
- 1.0.0
- 0.0.0
<script src=" https://cdn.jsdelivr.net/npm/fullcalendar-scheduler@6.1.15/index.global.min.js "></script>
FullCalendar Premium Bundle
Easily render a full-sized drag & drop calendar with a combination of standard & premium plugins
This fullcalendar-scheduler
package bundles these plugins:
- @fullcalendar/core
- @fullcalendar/interaction
- @fullcalendar/daygrid
- @fullcalendar/timegrid
- @fullcalendar/list
- @fullcalendar/multimonth
- @fullcalendar/adaptive
- @fullcalendar/timeline
- @fullcalendar/resource
- @fullcalendar/resource-daygrid
- @fullcalendar/resource-timegrid
- @fullcalendar/resource-timeline
Usage with CDN or ZIP archive
Load the index.global.min.js
file and use the FullCalendar
global namespace:
<!DOCTYPE html>
<html>
<head>
<script src='https://cdn.jsdelivr.net/npm/fullcalendar-scheduler/index.global.min.js'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const calendarEl = document.getElementById('calendar')
const calendar = new FullCalendar.Calendar(calendarEl, {
initialView: 'resourceTimelineMonth'
})
calendar.render()
})
</script>
</head>
<body>
<div id='calendar'></div>
</body>
</html>
Usage with NPM and ES modules
npm install fullcalendar-scheduler
import { Calendar } from 'fullcalendar-scheduler'
document.addEventListener('DOMContentLoaded', function() {
const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
initialView: 'resourceTimelineMonth'
})
calendar.render()
})