FullCalendar display week events like it is in ''months" -
i'm building system using fullcalendar plugin , have 1 problem. when there couple of events on same day, way displayed on week view confusing.
here actual image page:
i'd know if possible change it's in month view. when have more n events, show more +n button.
$('#agenda').fullcalendar({ windowresize: function(view) {}, editable: true, eventlimit: 3, eventoverlap: false, sloteventoverlap: false, height:800, alldayslot: false, [... more code ...] });
try this.. basicweek view not have spaces if events not there..
$('#calendar').fullcalendar({ header: { left: 'prev,next,today', center: 'title', right: 'month,basicweek' }, alldaydefault: false, slotduration: '00:15:00', alldayslot: true, defaultview: 'basicweek' // basicweek need, either call view or set defaultview }); how in app :

Comments
Post a Comment