i lost a lot of time to search for a solution - but nothing works for me. I have an Angular-1-Webapp and i need to use jQuery FullCalendar. Alle views a working and events are showing up - but in the agenda-views there is no event...
$('#calendar').fullCalendar({
//Language
lang: 'de',
//Weekview inital
defaultView: 'agendaWeek',
eventSources: [{
events: [{
"id" : "789",
"title" : 'event1',
"start" : "2017-01-11 12:00",
"end" : "2017-01-11 15:00"
}]
}]
});
HTML:
<div id="calendar"></div>
That's what is checked:
- Import Order is jquery -> css -> js
- JQuery working OK
- allDaySlot true/false - checked - no change
- allDay true/false in the event - checked - no change
Hope someone as another idea! THX
Here are some images
$(document).ready
in angular. How familiar are you will angular? – Buh Buh