I am looking for a solution to display more information in event.
For example in the DayView you see a event from 06:00 to 10:00.
I want to display a additio
With the modification of a single line you could alter the fullcalendar.js script to allow a line break and put multiple information on the same line.
In FullCalendar.js on line ~3922 find htmlEscape(s) function and add .replace(/
/g, '
') to the end of it.
function htmlEscape(s) {
return s.replace(/&/g, '&')
.replace(//g, '>')
.replace(/'/g, ''')
.replace(/"/g, '"')
.replace(/\n/g, '
')
.replace(/<br\s?\/?>/g, '
');
}
This will allow you to have multiple lines for the title, separating the information. Example replace the event.title with
title: 'All Day Event' + '
' + 'Other Description'