Skip to content
DayPilot

Tutorial: JavaScript Monthly Calendar and Spring Boot Backend

This tutorial shows how to add a JavaScript monthly event calendar to a Spring Boot application.

Tutorial: JavaScript Monthly Calendar and Spring Boot Backend

Features

Source code of the tutorial is available for download.

Example: Hiding Weekends

HTML5

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

JavaScript

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