This document is for an older version of

Freeform

.

View latest version →

Developer

Date Picker Events Revised 3.10.0+

The Freeform Date & Time field comes packed with a built-in, optional flatpickr instance. The flatpickr instance can be customized with via the following events available through the Freeform JS Plugin:

TIP

If you're using a Freeform version older than 3.10, please click here to view the v3.9 documentation that shows the old approach for usage of the Datepicker with Freeform Javascript plugin.

TIP

To get started with what's available for Flatpickr overrides, check out the available Flatpickr Config Options documentation as well as the Flatpickr Examples documentation.

Before initialization event

This event is fired right before a flatpickr instance is created, allowing you to extend the options that are being passed to the flatpickr instance:

document.addEventListener("flatpickr-before-init", (event) => {
  // event.options object contains the whole options object that will be
  // passed to the flatpickr intance

  event.options.static = true;
  event.options.clickOpens = false;
  event.options.defaultHour = 8; // starts the time picker at 8:00 am
  event.options.minuteIncrement = 15; // moves the time picker in 15 minute increments instead of 1
  event.options.disable = [
    // disables Sundays and Saturdays from being available options in datepicker
    function(date) {
      return (date.getDay() === 0 || date.getDay() === 6);
    }
  ];
  flatpickr.l10ns.default.firstDayOfWeek = 1; // sets first day of week to Monday
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

On flatpickr instance ready event

This event is called right after the flatpickr instance is created. You can access it via the event.flatpickr property of the event object:

document.addEventListener("flatpickr-ready", (event) => {
  // Get the flatpickr instance
  var instance = event.flatpickr;

  // Get the input field
  var input = instance.input;

  // Add bootstrap css classes to the parent element
  // to be able to use "static: true" flatpickr config option
  input.parentNode.classList.add("form-control");
  input.classList.remove("form-control");
  input.style.border = "none";
  input.style.margin = "0px";
  input.style.padding = "0px";
  input.style.width = "100%";
  input.style.outline = "none";
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17