Hide end time of an event in fullcalendar?

-2

No% of events appear at start and end time. Is there a way to show only the start time?

    
asked by anonymous 17.10.2017 / 16:18

2 answers

1

The displayEventEnd property is responsible for this control.

    
17.10.2017 / 17:02
0

Add the line timeFormat:'HH:mm', in

$(document).ready(function() {

            $('#calendar').fullCalendar({
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: 'month,agendaWeek,agendaDay'
                },
                    **timeFormat:'HH:mm',**
    
13.04.2018 / 14:49