Year View in Fullcalendar jquery plugin

后端 未结 3 1816
陌清茗
陌清茗 2020-12-07 18:00

I started a YearView in fullcalendar (derived from the basic \'MonthView\', needed to display longer events such as school holidays), and I could use a hand if anyone is alr

3条回答
  •  鱼传尺愫
    2020-12-07 18:29

    FullCalendar Documentation: http://arshaw.com/fullcalendar/docs/

    Loading events as JSON: http://arshaw.com/fullcalendar/docs/event_data/events_json_feed/

    Render event: http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/

    Render event example:

    fc.fullCalendar('renderEvent', {
        'id': 1,
        'title': 'Test Event 1',
        'start': '2009-11-05T13:15:30Z',
        'end': '2009-11-05T13:30:00Z'
    });
    

    Limit the display of available months: Fullcalendar limit the display of available months?

提交回复
热议问题