BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
List<AppointmentData> appData = new List<AppointmentData>();
appData.Add(new AppointmentData
{
Id = 1,
Subject = "Paris",
StartTime = new DateTime(2018, 1, 28, 10, 0, 0),
EndTime = new DateTime(2018, 1, 28, 12, 30, 0),
IsAllDay = false,
RecurrenceRule = "FREQ=DAILY;INTERVAL=1;COUNT=7",
RecurrenceException = "20180129T043000Z,20180131T043000Z"
}); |
@Html.EJS().Schedule("schedule").Width("100%").Height("650px").SelectedDate(new DateTime(2018, 4, 1)).PopupOpen("onPopupOpen").Render()
function OnPopupOpen(args): void {
if (!args.target.classList.contains("e-appointment"))
args.cancel = true;
} |