Have anyone ever had to do with FullCalendar extension? If so, anyone perhaps knows how to add second event.
The following code can’t add second event.
<?php
$this->widget('application.extensions.fullcalendar.FullcalendarGraphWidget',
array(
'data'=>array(
array(
'id'=>'11',
'title'=> 'All Day Event',
'start'=> date('2010-08-21'),
'end'=> date('2010-08-23'),
),
array(
'id'=>'15',
'title'=> 'Big Day',
'start'=> date('2010-08-27'),
)
),
'options'=>array(
'editable'=>true,
),
'htmlOptions'=>array(
'style'=>'width:800px;margin: 0 auto;'
),
)
);
?>