#955·Pikaday

I can select disabled days with keyboard

Author: MatthiascCreated Oct 23, 2024Updated Jul 7, 2025

I can not click with the mouse, as the day is disabled, but I can select it via the keyboard.

javascript
var picker = new Pikaday({
      field: document.getElementById("datepicker"),
      theme: "datepicker_custom",
      format: "DD MM YYYY",
      firstDay: 1,
      disableDayFn: (date: Date) => {
        return !validateDate(date);
      },
    });