![]() |
Tempus Dominus - Powerful Multilingual Date/Time Picker |
The written version of the Tempus Dominus Bootstrap 4 plugin, Powerful Multilingual Date/Time Picker.
Tempus Dominus is a powerful, fully customizable and lightweight date/time picker for Vanilla JavaScript and jQuery. It is a zero dependency replacement for the native HTML5 date & time input type.
Features:
- Multiple languages.
- Automatic language detection.
- 5 view modes: 'clock' | 'calendar' | 'months' | 'years' | 'decades'.
- Allows to enable/disable dates.
- Allows date range selection.
- Allows to disable/enable dates & times.
- Allows to disabled days of the week.
- Allows to select multiple dates.
- Smart positioning (requires popperjs library).
- Removed jQuery and Moment.js dependencies.
Initialization How to use it:
1. To get started, load the needed popperjs library, Font Awesome 5 and Tempus Dominus' files in the document.
<link rel="stylesheet" href="/path/to/dist/css/tempus-dominus.css" /> <link rel="stylesheet" href="/path/to/all.min.css" /> <script src="/path/to/popper.min.js"></script> <script src="/path/to/dist/js/tempus-dominus.js"></script>
2. You can still use it as a jQuery plugin.
<script src="/path/to/jquery.min.js"></script> <script src="/path/to/dist/js/jQuery-provider.min.js"></script>
3. Attach the date picker to an input field.
<input id="example" type="text" />
// Vanilla JS new tempusDominus.TempusDominus(document.getElementById('example'), { // options here }); // jQuery $('#example').tempusDominus({ // options here });
4. Enable a trigger button to toggle the date picker.
<div class="input-group" id="example" data-td-target-input="nearest" data-td-target-toggle="nearest" > <input id="exampleInput" type="text" data-td-target="#example" /> <span class="input-group-text" data-td-target="#example" data-td-toggle="datetimepicker" > <span class="fas fa-calendar"></span> </span> </div>
// Vanilla JS new tempusDominus.TempusDominus(document.getElementById('example'), { // options here }); // jQuery $('#example').tempusDominus({ // options here });
5. You can also attach the date picker to any element within the document.
<span id="example" > <i class="fa-solid fa-calendar"></i> </span>
// Vanilla JS new tempusDominus.TempusDominus(document.getElementById('example'), { // options here }); // jQuery $('#example').tempusDominus({ // options here });
6. Set the language of the date picker. Available locals:
- de
- en
- es
- it
- nl
- ro
- ru
new tempusDominus.TempusDominus(document.getElementById('example'), { localization: { dayViewHeaderFormat: { month: 'long', year: '2-digit' }, locale: 'es', startOfTheWeek: 0 }, });
7. Combine two date pickers to create a date range picker.
<!-- Date Picker 1 --> <label for="linkedPickers1Input" class="form-label">From</label> <div class="input-group log-event" id="linkedPickers1" data-td-target-input="nearest" data-td-target-toggle="nearest" > <input id="linkedPickers1Input" type="text" class="form-control" data-td-target="#linkedPickers1" /> <span class="input-group-text" data-td-target="#linkedPickers1" data-td-toggle="datetimepicker" > <span class="fa-solid fa-calendar"></span> </span> </div> <!-- Date Picker 2 --> <label for="linkedPickers2Input" class="form-label">To</label> <div class="input-group log-event" id="linkedPickers2" data-td-target-input="nearest" data-td-target-toggle="nearest" > <input id="linkedPickers2Input" type="text" class="form-control" data-td-target="#linkedPickers2" /> <span class="input-group-text" data-td-target="#linkedPickers2" data-td-toggle="datetimepicker" > <span class="fa-solid fa-calendar"></span> </span> </div>
const linkedPicker1Element = document.getElementById('linkedPickers1'); const linked1 = new tempusDominus.TempusDominus(linkedPicker1Element); const linked2 = new tempusDominus.TempusDominus(document.getElementById('linkedPickers2'), { useCurrent: false }); // using event listeners linkedPicker1Element.addEventListener(tempusDominus.Namespace.events.change, (e) => { linked2.updateOptions({ restrictions: { minDate: e.detail.date } }); }); // using subscribe method const subscription = linked2.subscribe(tempusDominus.Namespace.events.change, (e) => { linked1.updateOptions({ restrictions: { maxDate: e.date } }); });
8. All default options:
const linkedPicker1Element = document.getElementById('linkedPickers1'); new tempusDominus.TempusDominus(document.getElementById('example'), { // enable/disable dates & times restrictions: { minDate: undefined, maxDate: undefined, disabledDates: [], enabledDates: [], daysOfWeekDisabled: [], disabledTimeIntervals: [], disabledHours: [], enabledHours: [] }, // display options display: { icons: { // "icons" or "sprites" type: 'icons', time: 'fa-solid fa-clock', date: 'fa-solid fa-calendar', up: 'fa-solid fa-arrow-up', down: 'fa-solid fa-arrow-down', previous: 'fa-solid fa-chevron-left', next: 'fa-solid fa-chevron-right', today: 'fa-solid fa-calendar-check', clear: 'fa-solid fa-trash', close: 'fa-solid fa-xmark' }, // display the date and time pickers side by side sideBySide: false, // display an additional column with the calendar week for that week calendarWeeks: false, // 'clock' | 'calendar' | 'months' | 'years' | 'decades' viewMode: 'calendar', // 'top' | 'bottom' toolbarPlacement: 'bottom', keepOpen: false, // enable/disable buttons buttons: { today: false, clear: false, close: false }, // enable/disable components components: { calendar: true, date: true, month: true, year: true, decades: true, clock: true, hours: true, minutes: true, seconds: false, useTwentyfourHour: false }, // inline mode inline: false }, // control how much the minutes are changed by stepping: 1, // use the current date/time useCurrent: true, defaultDate: undefined, localization: { today: 'Go to today', clear: 'Clear selection', close: 'Close the picker', selectMonth: 'Select Month', previousMonth: 'Previous Month', nextMonth: 'Next Month', selectYear: 'Select Year', previousYear: 'Previous Year', nextYear: 'Next Year', selectDecade: 'Select Decade', previousDecade: 'Previous Decade', nextDecade: 'Next Decade', previousCentury: 'Previous Century', nextCentury: 'Next Century', pickHour: 'Pick Hour', incrementHour: 'Increment Hour', decrementHour: 'Decrement Hour', pickMinute: 'Pick Minute', incrementMinute: 'Increment Minute', decrementMinute: 'Decrement Minute', pickSecond: 'Pick Second', incrementSecond: 'Increment Second', decrementSecond: 'Decrement Second', toggleMeridiem: 'Toggle Meridiem', selectTime: 'Select Time', selectDate: 'Select Date', dayViewHeaderFormat: { month: 'long', year: '2-digit' }, locale: 'default', // 0 = Sunday, 6 = Saturday startOfTheWeek: 0 }, keepInvalid: false, debug: false, // show the date picker on focus allowInputToggle: false, viewDate: new DateTime(), multipleDates: false, multipleDatesSeparator: '; ', promptTimeOnDateChange: false, promptTimeOnDateChangeTransitionDelay: 200, // provide developers a place to store extra information about the picker meta: {}, // change the target container container: undefined, });
9. API methods:
const myPicker = new tempusDominus.TempusDominus(document.getElementById('example'), { // ... }); // return the current date myPicker.viewDate // return a DateTime object myPicker.dates // return the picked date myPicker.dates.picked // return the last picked date myPicker.dates.lastPicked // return the last picked index myPicker.dates.lastPickedIndex // add a DateTime myPicker.dates.add(DateTime); // set the date index myPicker.dates.setValue(value: DateTime, index?: number); // convert a DateTime object to a string myPicker.dates.formatInput(value: DateTime); // convert a string into a DateTime object myPicker.dates.setFromInput(value: any, index?: number); // return true if the target date is part of the selected dates array myPicker.dates.isPicked(DateTime, Unit?); // return the index at which target date is in the array myPicker.dates.pickedIndex(DateTime, Unit?); // clear all picked dates myPicker.dates.clear(); // OR myPicker.clear(); // toggle the date picker myPicker.toggle(); // show the date picker myPicker.show(); // hide the date picker myPicker.hide(); // add/remove CSS classes myPicker.paint(Unit | 'decade', DateTime, string[], HTMLElement); // enable the date input myPicker.enable(); // disable the date input myPicker.disable(); // toggle the date input myPicker.enable(); // destroy the date picker myPicker.dispose(); // update options myPicker.updateOptions(object, boolean?);
10. Events:
const myPicker = new tempusDominus.TempusDominus(document.getElementById('example'), { // ... }); const subscription = picker.subscribe(tempusdominus.Namespace.events.change, (e) => { // on change }); const subscription = picker.subscribe(tempusdominus.Namespace.events.show, (e) => { // on show }); const subscription = picker.subscribe(tempusdominus.Namespace.events.hide, (e) => { // on hide }); const subscription = picker.subscribe(tempusdominus.Namespace.events.update, (e) => { // on update }); const subscription = picker.subscribe(tempusdominus.Namespace.events.error, (e) => { // on error });
Live Demo
See the Pen Tempus Dominus - Powerful Multilingual Date/Time Picker by Teguh Sigit (@teguhsigit) on CodePen.
File Info
- File Name :
- tempus-dominus-master.zip
- Size :
- 672KB
- Site Download :
- Github.com
- Official Website:
- Go to website
- License:
- MIT