1

如何在没有日期的情况下显示从星期日到星期六的日子名称DayPilotCalendar

我想放在屏幕上:

Sun , Mon .... Sat 

谢谢

4

3 回答 3

0

你想要的是将 HeaderDateFormat 设置为“dddd”,这只会给你一周中的哪一天。

有关如何使用日期格式的更多示例,请参阅以下页面https://www.daypilot.org/choosing_headerdateformat_datetime_tostring_parameters/

于 2015-08-28T20:07:47.107 回答
0

您可以使用 headerDateFormat 属性在列标题中指定日期格式。它接受DayPilot.Date.toString(pattern)格式字符串。

如果没有指定 headerDateFormat,将使用datePattern当前的值。locale

例子

<div id="dp"></div>

<script>

  var dp = new DayPilot.Calendar("dp");
  // ...
  dp.headerDateFormat = "dddd"; // day of week, long format (e.g. "Monday")
  dp.init();

</script>

了解更多信息https://doc.daypilot.org/calendar/header-date-format/

于 2017-11-27T10:13:47.670 回答
0

您可以将标题格式添加到DayPilot:DayPilotCalendar,

DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" headerDateFormat = "dddd"

于 2017-11-09T13:17:34.070 回答