EventCalendar to show ALL events

How can I display a “mbsc-eventcalendar” with ONLY an eventList, without any date range view ?

I want to display to user a list of all their previous events, so date range is not relevant to them, and I certainly dont want them to be able to change it.

I could calculate date range in background - although it would be better to have an option to display all.

Hi Dave,

You can easily hide the event list header with a simple CSS rule:

.mbsc-fr-c {
    display: none;
}

Please see the attachment and let me know if this helps.

Thanks Gabi, that hides the date selection perfectly.