我不是PHP怪胎,但我能理解。
我想使用完整日历(此示例)
我已经阅读了完整的文档。我已经通过标签完整日历阅读了完整的 43 页但找不到我的答案。
很简单,拖入约会时如何添加事件?
脚本从 JSON 文件中读取,但如何写入 JSON?
来自全日历的 JS 文件:
$(function()
{
/* initialize the external events
-----------------------------------------------------------------*/
$('#external-events ul li').each(function()
{
// create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/)
// it doesn't need to have a start or end
var eventObject = {
title: $.trim($(this).text()) // use the element's text as the event title
};
// store the Event Object in the DOM element so we can get to it later
$(this).data('eventObject', eventObject);
// make the event draggable using jQuery UI
$(this).draggable(
{
zIndex: 999,
revert: true, // will cause the event to go back to its
revertDuration: 0, // original position after the drag,
start: function() { if (typeof mainYScroller != 'undefined') mainYScroller.disable(); },
stop: function() { if (typeof mainYScroller != 'undefined') mainYScroller.enable(); }
});
});
/* initialize the calendar
-----------------------------------------------------------------*/
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
droppable: true,
events: rootPath + "/admin/ajax/calendarEvents.json",
drop: function(date, allDay)
{
// retrieve the dropped element's stored Event Object
var originalEventObject = $(this).data('eventObject');
// we need to copy it, so that multiple events don't have a reference to the same object
var copiedEventObject = $.extend({}, originalEventObject);
// assign it the date that was reported
copiedEventObject.start = date;
copiedEventObject.allDay = allDay;
// render the event on the calendar
// the last `true` argument determines if the event "sticks" (http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/)
$('#calendar').fullCalendar('renderEvent', copiedEventObject, true);
// is the "remove after drop" checkbox checked?
if ($('#drop-remove').is(':checked')) {
// if so, remove the element from the "Draggable Events" list
$(this).remove();
}
}
});
});
这是 HTML
<div class="widget widget-inverse">
<!-- Widget heading -->
<div class="widget-head">
<h3 class="heading">Draggable Events</h3>
</div>
<!-- // Widget heading END -->
<div class="widget-body">
<!-- Events list -->
<ul class="unstyled">
<li class="glyphicons move"><i></i> My Event 1</li>
<li class="glyphicons move"><i></i> My Event 2</li>
<li class="glyphicons move"><i></i> My Event 3</li>
<li class="glyphicons move"><i></i> My Event 4</li>
<li class="glyphicons move"><i></i> My Event 5</li>
</ul>
<!-- Events list END -->
<label for="drop-remove" class="checkbox">
<input type="checkbox" class="checkbox" id="drop-remove" />
remove after drop
</label>
</div>
</div>
多谢
看看这个页面: 可拖动事件
查找源代码,您将看到drop函数
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
droppable: true, // this allows things to be dropped onto the calendar !!!
**drop**: function(date, allDay) { // this function is called when something is dropped
// retrieve the dropped element's stored Event Object
var originalEventObject = $(this).data('eventObject');
// we need to copy it, so that multiple events don't have a reference to the same object
var copiedEventObject = $.extend({}, originalEventObject);
// assign it the date that was reported
copiedEventObject.start = date;
copiedEventObject.allDay = allDay;
// render the event on the calendar
// the last `true` argument determines if the event "sticks" (http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/)
$('#calendar').fullCalendar('renderEvent', copiedEventObject, true);
// is the "remove after drop" checkbox checked?
if ($('#drop-remove').is(':checked')) {
// if so, remove the element from the "Draggable Events" list
$(this).remove();
}
}
});