簡體   English   中英

將完整日歷中的一天議程拆分為 15 分鍾的時段

[英]Split day agenda in full calendar into 15-minute slots

$('#calendar').fullCalendar({
      header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
      },
      buttonText: {
        today: 'today',
        month: 'month',
        week: 'week',
        day: 'day'
      },
      //Random default events
      events : <?php echo json_encode($events1);?>,

      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

我需要分成 15 分鍾的間隔。默認是 30 分鍾的時間段。我怎樣才能做到這一點,提前謝謝你

我想你正在尋找slotDurationhttp : slotDuration

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM