Good evening,
I'm using fullcalendar, but I can not open the event, just show it in the calendar. How do I get this in the code?
$(document).ready(function() {
$('#calendario').fullCalendar({
header: {
left: '',
center: 'prev, title, next',
right: ''
},
defaultDate: '2016-10-18',
editable: false,
eventLimit: true,
eventSources: [{
events: [<?php echo $eventos;?>],
color: '#2089cf',
textColor: '#fff' // an option!
}]
});
});
php events is the variable that holds all events.
Thank you