我想创建一个事件,该事件的开始时间无法在时间轴视图中拖动。我创建了一个示例页面,如下所示,但无法正常工作。
<html>
<head>
<title>FullCalendar Scheduler</title>
<script src="./fcsres/fullcalendar-3.9.0/lib/jquery.min.js"></script>
<script src="./fcsres/fullcalendar-3.9.0/lib/moment.min.js"></script>
<link rel="stylesheet" href="./fcsres/fullcalendar-3.9.0/fullcalendar.min.css">
<script src="./fcsres/fullcalendar-3.9.0/fullcalendar.min.js"></script>
<link rel="stylesheet" href="./fcsres/fullcalendar-scheduler-1.9.0/scheduler.min.css">
<script src="./fcsres/fullcalendar-scheduler-1.9.0/scheduler.min.js"></script>
<script type="text/javascript">
$(function() {
$('#calendar').fullCalendar({
defaultView: 'timelineDay',
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
resourceLabelText: 'Names',
resources: [
{ id: 'user', title: 'User' },
],
events: [
{ id: '1', resourceId: 'user', title : 'event1', start : '2018-11-14T12:00:00', end : '2018-11-14T15:00:00', editable: false, startEditable: false, durationEditable: true },
]
});
});
</script>
</head>
<body>
FullCalendar Scheduler
<div id="calendar"></div>
</body>
</html>
当视图类型设置为“ agendaDay”时,我发现页面运行良好。您能否告诉我如何在时间轴视图中设置这些属性。谢谢。