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:
enter image description here
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 :

i'm listing events 1 one in week view no spaces available


Comments

Popular posts from this blog

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -