jquery-date-range-picker
jquery-date-range-picker copied to clipboard
A jQuery plugin that allows user to select a date range
Hi, Plugin is very good but its missing "second" slider range. it only provide hour and minute. is there any way to enable "second" too?
swapTime option is on. when I open calendar and select 16.06.2018 (DD.MM.YYYY) for example, then 15.06.2018 finaly I have range: 15.06.2018 00:00 - 16.06.2018 23:59, that looks good then I'm...
Inside datepicker multi-language working fine, but when selecting any date then in input field month name shown always in english
in ie8 console output this: SCRIPT1028: 缺少标识符、字符串或数字 jquery.daterangepicker.min.js (7,262)
Suppose we have the range `15.06.2016 23:59 ~ 16.06.2016 00:00`. The length of time between the start and the end is only 1 second, however this library displays "2 days"...
When setting the maxDays option you can't select the actual max value. For example: maxDays: 30 Selecting exactly 30 days will give you the less-then error. I checked the daterangepicker...
I want to reselect the enddate when the date-range is still selected. How can I do this? I only want to change the "Bis"(to)-date. 
When using the month dropdown option changes don’t take effect because moment(opt[type])[name](value) is passed a string. The momentJS docs state that this works when name===‘month’ but testing reveals that this...
Useful for exemple if you need to set a date programmatically and need to trigger the change event. Before: ``` $(dom).dateRangePicker(); $(dom).data('dateRangePicker') .setDateRange('2013-11-20','2013-11-25'); //change event is not triggered $(dom).bind('datepicker-change', function(event,...
I got this message. ```error ERROR TypeError: Cannot read property 'find' of undefined ``` This is my options. ```javascript let tempDate = moment().format('YYYY-MM-DD'); $('.datepicker').dateRangePicker({ format: 'YYYY-MM-DD', monthSelect: true, yearSelect: true,...