Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
144699 | May 17,2019 05:56 PM UTC | May 22,2019 05:28 AM UTC | ASP.NET Core - EJ 2 | 3 |
![]() |
Tags: Scheduler |
<e-schedule-views>
<e-schedule-view option="Month"></e-schedule-view>
</e-schedule-views> |
button#e-tbr-btn_3 {
display: none;
} |
public List<AppointmentData> GetScheduleData()
{
List<AppointmentData> appData = new List<AppointmentData>();
appData.Add(new AppointmentData
{
Id = 1,
Subject = "HoliDay",
StartTime = new DateTime(2019, 5, 22, 0, 0, 0),
EndTime = new DateTime(2019, 5, 23, 0, 0, 0),
IsAllDay = true,
IsReadonly = true
});
return appData;
}
public class AppointmentData
{
public int Id { get; set; }
public string Subject { get; set; }
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
public Boolean IsAllDay { get; set; }
public Boolean IsReadonly { get; set; }
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.