change slotDuration of fullCalendar



我使用的是ui日历(switch基于fullCalendar),默认插槽持续时间为"00:30:00"。我想把它改成"00:15:00"。

我的配置对象:

  /* config object */
  $scope.uiConfig = {
    calendar:{
      height: 450,
      editable: true,
      duration: '00:15:00',
      slotDuration: '00:15:00',
      header:{
        left: 'title',
        center: '',
        right: 'today prev,next'
      },
      eventClick: $scope.alertOnEventClick,
      eventDrop: $scope.alertOnDrop,
      eventResize: $scope.alertOnResize
    }
  };

根据http://fullcalendar.io/docs/agenda/slotDuration/.但这并没有帮助:(

这是因为ui日历仍在使用fullCalendar的v1。slotDuration是在v2中引入的。相反,尝试使用

slotMinutes : 15

相关内容

  • 没有找到相关文章

最新更新