我正在使用 DayPilot Pro 7.1.2741 试用版,并且只会在周一至周五显示。我希望它也显示周六和周日
DayPilot Pro 7.1.2741 的链接
http://code.daypilot.org/65101/timetable-tutorial-asp-net-c-vb-net
http://www.daypilot.org/tutorial/timetable/
因此,请帮助启用这些天。
我正在使用 DayPilot Pro 7.1.2741 试用版,并且只会在周一至周五显示。我希望它也显示周六和周日
DayPilot Pro 7.1.2741 的链接
http://code.daypilot.org/65101/timetable-tutorial-asp-net-c-vb-net
http://www.daypilot.org/tutorial/timetable/
因此,请帮助启用这些天。
将 DayPilotCalendar.Days 设置为 7。 Default.aspx.cs 中的 Page_Load 方法应如下所示:
protected void Page_Load(object sender, EventArgs e)
{
blocks = new DataManager().GetBlocks();
if (!IsPostBack)
{
DayPilotCalendar1.StartDate = Week.FirstWorkingDayOfWeek(DayPilotNavigator1.SelectionStart);
DayPilotCalendar1.Days = 7;
DayPilotCalendar1.DataSource = new DataManager().GetAssignments(DayPilotCalendar1);
DayPilotCalendar1.DataBind();
}
}