Hello,
I wonder if there is a way to disable selection in SfCalendar (Xamarin Forms) other than adding all possible dates to the BlackoutDates?
Kind regards,
Valeriy
|
private void Calendar_OnCalendarTapped(object sender, CalendarTappedEventArgs e)
{
calendar.ClearSelection();
} |
Thank you! Works great!
Kind regards,
Valeriy
Hi SaiGanesh,
Our QA found that it's still possible to select a day by doing a long tap. Is there a workaround for this?
Kind regards,
Valeriy
|
private void Calendar_SelectionChanged(object sender, Syncfusion.SfCalendar.XForms.SelectionChangedEventArgs e)
{
calendar.ClearSelection();
} |