You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, Thanks for the so good and simple library. Contributing the same ....
If you want to report the event when the new date is picked in the input box . Add these two lines in "jsCalendar.datepicker.js"
at line 343
const event = new Event('change', { bubbles: true });
this._target.dispatchEvent(event);
and will throw the 'change' event whenever the new date is picked
and then the input box change can be listened.
Happy coding..
Thanks
The text was updated successfully, but these errors were encountered:
@AhlawatAnup thank you for the suggestion, it will be a nice improvement. Just FYI, I have seen your message but due to work load I am not able to work on it at this time.
It would be awesome if someone can create a PR as @Chris53897 suggested.
Hey, Thanks for the so good and simple library. Contributing the same ....
If you want to report the event when the new date is picked in the input box . Add these two lines in "jsCalendar.datepicker.js"
at line 343
const event = new Event('change', { bubbles: true });
this._target.dispatchEvent(event);
and will throw the 'change' event whenever the new date is picked
and then the input box change can be listened.
Happy coding..
Thanks
The text was updated successfully, but these errors were encountered: