-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
Date Picker to pick several dates #360
Comments
According to the Material standard the Datepicker component is implemented accordingly in Materialize. Works as expected, proposal to close this issue. |
Looking into this issue as I previously mentioned it was not according to the standards, it turns out it does As a result it would be great to implement a solution that allows selection of a start and end date, we would need two dates fields and adjust the datepicker to allow multiple selection by additional option with highlighting of the time range |
…mplemented input change handler for end date input; Fix issue where formatted date was not rendered correctly on date type input; Fix existing spec tests materializecss#360
…day or multi day date selection; Implemented setDateFromInput for logical navigation within the calendar by mouse/keypress interaction on input change, fixes issue where calendar only navigated to latest changed field; Refactored handleCalendarClick, split up single date click and date range click for the sake of code readability and simplicity; Updated JSDoc, removed unused parameter; Deprecated _setToStartOfDay (function has no effect); materializecss#360
… standards materializecss#558; implemented styling for in range (wip) materializecss#360
…ell to initial, implemented additional is-daterange-start + is-daterange-end classes and refactored styling to use pseudo selectors on newly created classes materializecss#360
Before submitting...
Context
It is sometimes required to allow the user to select several dates (e.g. when proposing dates for a meeting), or a date range, e.g., in a hotel booking application.
Current Behavior
Currently, only one date can be picked.
Expected behavior
Introduce a
selectionMode
attribute to the date picker, with these possible values:multiple
,range
.Possible Solutions or Causes
Have a look at the design of primeNG:
Your Environment
The text was updated successfully, but these errors were encountered: