Fork me on GitHub

Project Notes

#224

Using the fullcalendar library for the web.

Notes

About fullcalendar

Built for JavaScript: FullCalendar’s vanilla JavaScript API is blazing fast, using a very small embedded virtual DOM library called Preact.

Built for Angular: FullCalendar provides a high-performance Angular component that intelligently rerenders when data is mutated.

Built for Vue: FullCalendar provides a high-performance Vue component that intelligently rerenders when data is mutated.

Built for React: FullCalendar generates real React virtual DOM nodes so you can leverage Fiber, React’s highly optimized rendering engine.

v5.11.0

Currently, the latest version is v5.11.0

Notable in this version:

  • calendar is initialised and a new class given a DOM node. Does not required jQuery: calendar = new FullCalendar.Calendar(calendarEl, {});
  • events (as a function) takes 3 args: fetchInfo, successCallback, failureCallback
  • eventClick takes 1 arg: eventClickInfo

v5.11.0 Examples

mkdir fullcalendar-5.11.0
cd fullcalendar-5.11.0
wget https://github.com/fullcalendar/fullcalendar/releases/download/v5.11.0/fullcalendar-5.11.0.zip
unzip fullcalendar-5.11.0.zip
rm fullcalendar-5.11.0.zip

Running the standard demo:

open fullcalendar-5.11.0/examples/theming.html

Bootstrap 4:

demo-bs4

Bootstrap 5:

demo-bs5

v3.9.0

v3.9.0 (2018-03-04)

Notable in this version:

  • calendar is initialised directly on a jQuery DOM node: $('#calendar').fullCalendar({});
  • events (as a function) takes 4 args: start, end, timezone, callback
  • eventClick takes 3 args: event, jsEvent, view
  • header defines options for left, center, right

v3.9.0 Examples

wget https://github.com/fullcalendar/fullcalendar/releases/download/v3.9.0/fullcalendar-3.9.0.zip
unzip fullcalendar-3.9.0.zip
rm fullcalendar-3.9.0.zip

Running the standard theme demo:

open fullcalendar-3.9.0/demos/themes.html

v3.9.0 added Bootstrap 4 theme support.

demo-bs4

v1.5.4

v1.5.4 (10 Sep 2013)

Notable in this version:

  • calendar is initialised directly on a jQuery DOM node: $('#calendar').fullCalendar({});
  • events (as a function) takes 2 args: start, end, callback
  • eventClick takes 3 args: event, jsEvent, view
  • header defines options for left, center, right

v1.5.4 Examples

mkdir fullcalendar-1.5.4
cd fullcalendar-1.5.4
wget https://github.com/fullcalendar/fullcalendar/releases/download/v1.5.4/fullcalendar-1.5.4.zip
unzip fullcalendar-1.5.4.zip
rm fullcalendar-1.5.4.zip

Running the standard theme demo:

open fullcalendar-1.5.4/demos/theme.html

demo-theme

Credits and References

About LCK#224 webjavascript
Project Source on GitHub Return to the Project Catalog

LittleCodingKata is my collection of programming exercises, research and code toys broadly spanning things that relate to programming and software development (languages, frameworks and tools).

These range from the trivial to the complex and serious. Many are inspired by existing work and I'll note credits and references where applicable. The focus is quite scattered, as I variously work on things new and important in the moment, or go back to revisit things from the past.

This is primarily a personal collection for my own edification and learning, but anyone who stumbles by is welcome to borrow, steal or reference the work here. And if you spot errors or issues I'd really appreciate some feedback - create an issue, send me an email or even send a pull-request.

LittleArduinoProjects LittleModelArt More on my blog