📜  jQWidgets jqxScheduler editDialogDateTimeFormatString 属性(1)

📅  最后修改于: 2023-12-03 15:16:56.463000             🧑  作者: Mango

jQWidgets jqxScheduler EditDialogDateTimeFormatString 属性介绍

概述

jqxScheduler 是一个功能强大的 jQuery 事件日程表控件。EditDialogDateTimeFormatString 属性用于设置 jqxScheduler 编辑对话框中时间输入框的显示格式。

语法
$('#scheduler').jqxScheduler({ 
    editDialogDateTimeFormatString: 'format_string'
});
参数
  • format_string:时间显示格式字符串。可以使用以下标识符:

| 标识符 | 描述 | | ------ | ---- | | d | 日期(1-31) | | dd | 日期(01-31)| | ddd | 缩写星期几(Sun-Sat)| | dddd | 星期几全称(Sunday-Saturday)| | M | 月份(1-12)| | MM | 月份(01-12)| | MMM | 缩写月份(Jan-Dec)| | MMMM | 月份全称(January-December)| | yy | 年份(00-99)| | yyyy | 年份(例如:1999)| | h | 小时(1-12)| | hh | 小时(01-12)| | H | 小时(0-23)| | HH | 小时(00-23)| | m | 分钟(0-59)| | mm | 分钟(00-59)| | s | 秒(0-59)| | ss | 秒(00-59)| | tt | AM/PM |

示例
$('#scheduler').jqxScheduler({
  date: new Date(),
  width: '100%',
  height: 600,
  source: appointmentsAdapter,
  editDialogDateTimeFormatString: "yyyy-MM-dd HH:mm tt"
});

此示例中,EditDialogDateTimeFormatString 的值为 "yyyy-MM-dd HH:mm tt",表示时间输入框将显示为 2021-08-08 08:30 PM 的格式。

注意事项
  • format_string 中的标识符必须使用单引号或双引号括起来。
  • 标识符大小写不敏感,但建议使用大写的标识符。
  • 如果 format_string 为空,则使用预设值 "yyyy-MM-dd HH:mm tt"。
  • EditDialogDateTimeFormatString 只能在初始化 jqxScheduler 控件时设置,无法在运行时修改。
参考文献