Tutorial: JavaScript Monthly Calendar and Spring Boot Backend

This tutorial shows how to add a JavaScript monthly event calendar to a Spring Boot application.
Oct 2, 2017
html5 javascript monthly event calendar spring boot java

Features

Source code of the tutorial is available for download.

Example: Hiding Weekends

html5 javascript monthly event calendar spring boot java hiding weekend

HTML5

<label><input type="checkbox" id="weekends" checked="checked"> Show weekend</label>

JavaScript

$("#weekends").click(function() {
  dp.showWeekend = $("#weekends").is(":checked");
  dp.update();
});