EFullcalendar not working




<?php 

$this->widget('ext.EFullCalendar.EFullCalendar', array(

    'themeCssFile'=>'cupertino/theme.css',

    'htmlOptions'=>array(

	'style'=>'width:100%'

    ),

	

    'options'=>array(

        'header'=>array(

            'left'=>'prev,next',

            'center'=>'title',

            'right'=>'today'

        ),

        'lazyFetching'=>true,

        //'events'=>$calendarEventsUrl, // action URL for dynamic events, or

		//'events'=>Yii::app()->createUrl('site/CalendarEvents'),

        'events'=>array('title'=>'Meeting',

                'start'=>'2015-01-10T10:00:00',

                'end'=> '2015-01-10T16:00:00',

				'color'=>'#CC0000'), // pass array of events directly

 

        'eventMouseover'=>new CJavaScriptExpression("js_function_callback"),

    ),

));

?>



my code is as above. here i added one event in events array but it not display any thing on page please help me to use efullcalendar. how can i use efullcalendar to get events from database and display in calendar

Looks like Yii 1.1. But this is a Yii2 forum…