Improve date picker UI

- Set first day of week to Monday
- Enable year and month selectors

#590
This commit is contained in:
Artur Beljajev 2017-09-19 13:53:14 +03:00
parent 513a729673
commit 1ed10d2237
6 changed files with 24 additions and 11 deletions

View file

@ -0,0 +1,21 @@
(function () {
$.datepicker.setDefaults({
changeMonth: true,
changeYear: true,
duration: 'fast',
firstDay: 1, // Monday
dateFormat: 'yy-mm-dd',
});
function attachDatePicker() {
var dateFields = $('.datepicker');
dateFields.datepicker();
}
// For turbolinks
document.addEventListener('page:change', function () {
attachDatePicker();
});
attachDatePicker();
})();