Below is the code from the FullCalendar Custom View document . This seems like a great start, but it would be very useful if someone completely new, like me, had some basic code that displays the simplest user view (with some events). They will tell you both BasicView and AgendaView as a link, but this is a little beyond my understanding. Should each of the functions be overridden in a custom class?
This Plunker has a basic FullCalendar and a button to go to the user view. It would be very helpful to see a working example. I go in for hours without any success for the user view. If you know FullCalendar and are ready to fill out some code for functions, it will be very appreciated!
https://plnkr.co/edit/gfEUCVYTWTm1md24e33m?p=preview
My goal is to create a daily list that lists all the events of the day in a scrollable div (where each record will ultimately be completely outlined using data and CSS styles). I'm not sure what listDay will allow for this type of configuration?).
var FC = $.fullCalendar;
var View = FC.View;
var CustomView;
CustomView = View.extend({
initialize: function() {
},
render: function() {
},
setHeight: function(height, isAuto) {
},
renderEvents: function(events) {
},
destroyEvents: function() {
},
renderSelection: function(range) {
},
destroySelection: function() {
}
});
source
share