jquery-date-range-picker
jquery-date-range-picker copied to clipboard
Issue datepicker change event
trafficstars
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...
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.