Я должен видеть 2 колонки, «Комната А» и «Комната Б».Тем не менее, я вижу только один столбец без любого из них.пожалуйста, дайте мне знать, что я пропустил.Заранее спасибо
<script>
$(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
// put your options and callbacks here
defaultView: 'agendaDay',
events: [
// events go here
],
Resources: [
{ id: 'a', title: 'Room A' },
{ id: 'b', title: 'Room B', eventColor:'green'}
]
})
});
</script>