简体   繁体   English

当我在完整日历中创建第二个事件时,将创建两个事件

[英]When i create a second event in full calendar, two events is create

If you create a event, it work perfectly, but when you create more, the system create all events before + the one you create right now. 如果您创建一个事件,它会完美地工作,但是当您创建更多事件时,系统会在+您现在创建的事件之前创建所有事件。

<div id='wrap'>


<div id="fullCalModalModify" class="modal fade">
<div class="modal-dialog">
    <div class="modal-content">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span> <span class="sr-only">close</span></button>
            <a>Title:</a><input id="modalTitleModify" class="modal-title" autofocus><a>Avec:</a><input id="modalClientModify" class="modal-title">
        </div>

        <div class="modal-footer">
            <button class="alert alert-success" id="btnSave"><a  target="_blank">Save</a></button>  
        </div>
    </div>
</div>

    <div id="calendar"></div>
    <div style='clear:both'></div>
</div>

$(document).ready(function() { 
var title;
var client;
var eventData;
/* initialize the external events------------------------------*/
$('#external-events .fc-event').each(function() {
// store data so the calendar knows to render an event upon drop
$(this).data('event', {
title: $.trim($(this).text()), // use the element's text as the event title
stick: true // maintain when user navigates (see docs on the renderEvent method)
});

    // 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
    });
});

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay,listMonth'
    },
    defaultDate: '2016-09-12',
    droppable: true, // this allows things to be dropped onto the calendar
    navLinks: true, // can click day/week names to navigate views
    businessHours: true, // display business hours
    editable: true,
    selectable: true,
    selectHelper: true,
    select: function(start, end) {
        $('#modalTitleModify').val("");
        $('#modalClientModify').val("");
        $('#fullCalModalModify').modal();
        $("#btnSave").click(function() {    
            title = $('#modalTitleModify').val();
            client = $('#modalClientModify').val();
            description = $('#modalDescriptionModify').val();
            if (title) {        
                eventData = {
                    title: title,
                    clientName: client,
                    start: start,
                    end: end
                };
                $('#calendar').fullCalendar('renderEvent', eventData, true); // stick? = true
                $("#fullCalModalModify").modal('hide');
            }
    }); 
    $('#calendar').fullCalendar('unselect');
    },
    loading: function(bool) {
    $('#loading').toggle(bool);
    /*end of section separate windows */
        },         
    });
});

http://jsfiddle.net/prodeinfo/x4dbs8qz/ http://jsfiddle.net/prodeinfo/x4dbs8qz/

I dont understand why, can you help me please? 我不明白为什么,你能帮我吗?

I think the problem is that you're adding a new $("#btnSave").click() event listener every time the select function ( select: function(start, end) {....} ) is called. 我认为问题在于,每次调用select函数( select: function(start, end) {....} )时,您都要添加一个新的$("#btnSave").click()事件侦听器。

You can fix that by using the jquery .one(...) function. 您可以使用jquery .one(...)函数来解决此问题。 Here is an example: 这是一个例子:

select: function(start, end) {
    ....
    $("#btnSave").one("click", function() { 
        ....
    }
}

It seems to be working 它似乎正在工作

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM