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
Goal: disable dates that user should not be able to select. Effect: makes it possible for users to not be able to select invalid dates, significantly improving the user experience.
Use Cases:
there are no appointment available on certain days or day is fully booked, but user has to click through each day anyway trying to find an available appointment
team member reviewing scheduled events coming up, having to click through every day even though a small percentage of the dates actually have events going on
projects found by deadline date --> team has to look through each date trying to find when project deadlines are and prepare ahead
In all these use cases, only certain dates should be clickable, all others should be disabled.
Why it is needed
Why:
poor user experience --> painful and time-consuming for users to click through every date trying to find events or appointment slots on days where there are none.
Hello and thanks for asking,
what you're saying is true, but unfortunately cannot be done with the native components that the library is built on top of. You're going to need to use some other RN library.
Feature request
Goal: disable dates that user should not be able to select.
Effect: makes it possible for users to not be able to select invalid dates, significantly improving the user experience.
Use Cases:
In all these use cases, only certain dates should be clickable, all others should be disabled.
Why it is needed
Why:
Possible implementation
follow the pattern established by mui/date-picker#prop:shouldDisableDate
add a prop called 'shouldDisableDate'
Code sample
The text was updated successfully, but these errors were encountered: