I am using fullcalendar, but I ran into a problem, what do I need to display the day of the week in the date cell, and also set the current month next to the date? how can this be done? 
js: $('.js-fullcalendar').fullCalendar({ header: { right: 'today', center: 'prev, title, next', left: '' }, navLinks: true, editable: true, eventLimit: true, events: exhibitionList, eventColor: '#3279b7', columnFormat: 'dddd', eventRender: function(event, element) { if(event.logo){ element.find(".fc-title").prepend("<img class='fcalen__img' src="+event.logo+">").append("<span class='fcalen__city'>"+event.city+"</span>"); } } });