Replies: 3 comments 1 reply
-
I absolutely love, what this library is becoming! I hope you continue the great work! |
Beta Was this translation helpful? Give feedback.
0 replies
-
On Looking forward to seeing it. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I added some new samples, based on a new |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
[FluentCalendar] Select multiple dates and range of dates
We're thinking of adding a
SelectMode
property so that the user can select a range of datesCalendarSelectMode.Range
or a discontinuous list of datesCalendarSelectMode.Multiple
.Initially, this feature will only be available for the FluentCalendar with
View=Days
.A new bindable property
SelectedDates
will retrieve these dates, rendering the existingValue
property useless in theseSelectModes
only.Added a
SelectDatesHover
method that returns a list of dates to be pre-selected (hover) and activated when the user clicks on this selection. This allows you to manage choices such as selecting an entire week, with a single mouse click. Or selecting 3 days automatically, with a single click.The
@bind-SelectedDates:after
command can be used to validate the content of selected dates, block or remove them if necessary, or even display an error message.Example
[EDIT] 2024-06-10: Adding
SelectDatesHover
function to customize the hover effect (dates will be selected) and many samples.Beta Was this translation helpful? Give feedback.
All reactions