From 475e30f09ca01ff3210a4f439bc512221369e690 Mon Sep 17 00:00:00 2001 From: gismofx Date: Fri, 11 Mar 2022 11:50:24 -0500 Subject: [PATCH] Update README.md Add events to sample code --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 14a2d9e..052b1d4 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,10 @@ add this inside the `` near the bottom CalendarViewName="ViewModel.CalendarViewName" @bind-VisibleStartDateRange="ViewModel.StartDate" @bind-VisibleEndDateRange="ViewModel.EndDate" + OnChangeCalendarEventOrTask="@(async (x) => await ViewModel.OnChangeCalendarEventOrTask(x))" + OnClickCalendarEventOrTask="@(async (x) => await ViewModel.OnClickCalendarEventOrTask(x))" + OnCreateCalendarEventOrTask="@(async (x) => await ViewModel.OnCreateCalendarEventOrTask(x))" + OnDeleteCalendarEventOrTask="(async (x) => await ViewModel.OnDeleteCalendarEventOrTask(x))" @ref=_calendarRef> ```