-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ability to set range from two input fields and update the calendar selected range #68
Comments
Currently the only way to achieve your goal is to render the calendar again after an input event. If you want to code support for changing range externally, I'm happy to accept your pull request. Perhaps the calendar could listen a custom event that could be triggered from outside: container.continuousCalendar(options)
//for range version
container.trigger('update', myDateRange)
//and for single date version:
container.trigger('update', myDateTime) |
Do we have this functionality? Any plans on adding this? |
Would you like to contribute? |
This is the next I'm about to implement |
@eeroan Any updates on this issue? |
I have the two input fields that are populated with the start date and end date and would like the ability to watch each input for a change and call something like "setRangeEnd" and "setRangeStart" and call that each time a change event occurs in the input.
The text was updated successfully, but these errors were encountered: