如何在没有日期的情况下显示从星期日到星期六的日子名称DayPilotCalendar
?
我想放在屏幕上:
Sun , Mon .... Sat
谢谢
如何在没有日期的情况下显示从星期日到星期六的日子名称DayPilotCalendar
?
我想放在屏幕上:
Sun , Mon .... Sat
谢谢
你想要的是将 HeaderDateFormat 设置为“dddd”,这只会给你一周中的哪一天。
有关如何使用日期格式的更多示例,请参阅以下页面https://www.daypilot.org/choosing_headerdateformat_datetime_tostring_parameters/
您可以使用 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>
您可以将标题格式添加到DayPilot:DayPilotCalendar
,
DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" headerDateFormat = "dddd"