Daterangepicker,无法选择比当前日期早的日期范围

时间:2015-12-31 08:00:55

标签: jquery daterangepicker

我有一种奇怪的行为。

我无法选择比当前日期更早的日期范围。

我的设置是:

 $('.rangepicker').daterangepicker({
            autoUpdateInput: false,
            format: 'DD/MM/YYYY',
            ranges: {
                'Today': [moment(), moment()],
                'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
                'Last 7 Days': [moment().subtract(6, 'days'), moment()],
                'Last 30 Days': [moment().subtract(29, 'days'), moment()],
                'This Month': [moment().startOf('month'), moment().endOf('month')],
                'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
            }
        });

但即使我只是设置默认值,也是不可能的。

在这里你看到了这个行为: http://screencast.com/t/Ag7WiiMhMg

有谁知道为什么?

0 个答案:

没有答案