longbill / jquery-date-range-picker

A jQuery plugin that allows user to select a date range
MIT License
1.12k stars 579 forks source link

Issue datepicker change event #411

Open ferlorca opened 6 years ago

ferlorca commented 6 years ago

I have an issue on datepicker when i want to change a range manually. If I click on the input and the plugin interface is displayed and then I select a range, when I want to change the values in the input manually this plugin dont trigger the change event...

jcubic commented 5 years ago

This is old but I had the same issue, the solution is in code:

                // set initiated  to avoid triggerring datepicker-change event
                initiated = false;

the comment say it all, I wanted the opposite behavior, so I've just commented out that line and it works.