2

fullcalendarを使って学校の時間割を作りたいです。

次のようになります。 リンク

私の問題は、fullcalendar が常に平日の次の日付を表示することです。(「水 - 04/27」、「木 - 04/28」、...)

私が望むのは、月曜日から金曜日まで、日付がなく、次の週に切り替える機会がないということです。それは抽象的な週であるべきです。それを達成する方法はありますか?

ご協力いただきありがとうございます。

4

1 に答える 1

3

ここのドキュメントで見つけることができるプラグインのすべての機能をいじった後、私は作業カレンダーを持っています!

これは次のようになります。 フルカレンダー

コードは次のとおりです。

var calendar = $('#trainingszeitenCalendar').fullCalendar({
        //lang: 'de',
        header: { // Display nothing at the top
            left: '',
            center: '',
            right: ''
        },
        eventSources: ['events.php'],
        height: 680, // Fix height
        columnFormat: 'dddd', // Display just full length of weekday, without dates 
        defaultView: 'agendaWeek', // display week view
        hiddenDays: [0,6], // hide Saturday and Sunday
        weekNumbers:  false, // don't show week numbers
        minTime: '16:00:00', // display from 16 to
        maxTime: '23:00:00', // 23 
        slotDuration: '00:15:00', // 15 minutes for each row
        allDaySlot: false, // don't show "all day" at the top
        select: function(start, end, allDay) {

             // Code for creating new events.
             alert("Create new event at " + start);
        },
        eventResize: function( event, delta, revertFunc, jsEvent, ui, view ) {
             // Code when you resize an event (for example make it two hours longer
             alert("I just got resized!");
        },
        eventDrop: function( event, jsEvent, ui, view ) { 

            // Code when you drop an element somewhere else
            alert("I'm somewhere else now");
        }
}
// With the next line I set a fixed date for the calendar to show. So for the user it looks like it's just a general week without a 'real' date behind it.
$('#trainingszeitenCalendar').fullCalendar( 'gotoDate', '2000-01-01');

編集

さまざまなイベントで MYSQL テーブルを作成しました。イベントは と の間に1999-12-27あり2000-01-02ます。イベントをテーブルに追加するには、すべてのイベント オブジェクトを返す別の php ファイルが必要です (以下のコードを参照)。アクションを使用してドラッグ アンド ドロップを実行できます (上記のコードを参照)。

events.php

<?php

 $fetch = "YOUR SQL Statement";
 $query = mysqli_query....; // Execute fetch

 $event_array = array();

 while ($event = mysqli_fetch_array($query, MYSQL_ASSOC)) {

 $id = $event['ID'];
 $title = $event['Title'];
 $description = $event['Description'];
 $startdatum = $event['Start'];
 $enddatum = $event['Ende'];

 // Add event object to JSON array
 // For more options check the fullcalendar.io docs 
 $event_array[] = array(
    'id' => $id,
    'title' => $title,
    'description' => $description,
    'start' => $startdatum,
    'end' => $enddatum
 );
 }

 echo json_encode($event_array);

 ?>
于 2016-04-27T09:56:00.657 に答える