Last active
August 16, 2021 07:58
-
-
Save reachkamrul/130b5a38ab14ca04d7d77ab679eb3fbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add this code to First Date | |
{ | |
minDate: "today", | |
disableMobile: "true", | |
onChange: function(selectedDate, dateString) { | |
var date = selectedDate[0]; | |
flatpickr('.endingDate', { | |
"minDate": date, | |
dateFormat: "d.m.Y", | |
disableMobile: "true" | |
}); | |
} | |
} | |
//Add this class 'endingDate' to second dates element | |
// Add this css to your Forms custom css | |
.flatpickr-monthDropdown-months { | |
-webkit-appearance: none !important; | |
-webkit-border-radius: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment