scoutforpets / ember-fullcalendar

An Ember Component for FullCalendar and FullCalendar Scheduler
MIT License
39 stars 45 forks source link

Not able to use fullcalendar-schedular #63

Closed krnbatta closed 6 years ago

krnbatta commented 6 years ago

These are my header settings

  header: {
    left: 'prev,next,today,waitList',
    center: 'title',
    right: 'month,basicWeek,basicDay,agendaWeek,agendaDay,listYear,listMonth,listWeek,listDay,timelineDay,timelineWeek,timelineMonth,timelineYear'
  }

And this is my template:

{{full-calendar events=calendarEvents views=views header=header eventRender=(action 'eventRender') eventClick=(action 'eventClicked') defaultTimedEventDuration = '01:00:00' eventLimit=6 resources=resources resourceAreaWidth=230 resourceLabelText='Rooms' defaultView='listYear' defaultDate='2017-11-02'}}

I am unable to view all the views that are provided by scheduler i.e. timelineDay,timelineWeek,timelineMonth,timelineYear. Is there something that I am doing wrong?