4

クリックするだけで月ビューで選択された週全体を作成してから、このイベントを作成しようとするfullcalendarプラグインに問題があります。つまり、特定の週のいずれかの日をクリックすると、その週が強調表示され、イベントが作成されます。その後、このイベントをデータベースに入力する必要があります。

これは私がこれまでに持っているものです:

<script>
    $(document).ready(function() {
    var date = new Date();
    var d = date.getDate();
    var m = date.getMonth();
    var y = date.getFullYear();
// page is now ready, initialize the calendar...

$("#calendar").fullCalendar({
    // put your options and callbacks here
    header: {
            right: "today prev,next",
            left: "title",
        },
    height:650,
        selectable: true,
        selectHelper: true,
        select: function(start, end, allDay) {
            var title = confirm("Apply for kitchenweek?");
            if (title) {
                calendar.fullCalendar("renderEvent",
                    {
                        title: title,
                        start: start,
                        end: end,
                        allDay: allDay
                    },
                    true // make the event "stick"
                );
            }
            calendar.fullCalendar("unselect");
        },
    editable: true,
    events: "/json-events.php"
   })
  });
</script>

どんな助けでも大歓迎です。

4

2 に答える 2