This extension is fullCalendar

protected/extensionsSee the following code example:
$this->widget('application.extensions.fullcalendar.FullcalendarGraphWidget', array( 'data'=>array( 'title'=> 'All Day Event', 'start'=> date('Y-m-j') ), 'options'=>array( 'editable'=>true, ), 'htmlOptions'=>array( 'style'=>'width:800px;margin: 0 auto;' ), ) );
Total 7 comments
Ok. Found the solution and fixed JS here: http://code.google.com/p/fullcalendar/issues/detail?id=1168 Problem was in jQuery version.
Is Drag and Drop functionality working in this widget? When I try to drag event to another place it returns to its previous one. Then I tried to replace assets to fullcalendar 1.5.2, events now can be dragged but they are not attached to days. They can be dragged but nothing happens, callbacks are not runs.
Well, I couldn't get it to support multiple events without editing a line of the source. In line 20 of FullCalendarGraphWidget I changed
to
as it seemed to me that the proper consumption should look something like this
'data' => array( array( 'title' => 'My First Appointment', 'start' => '2010-10-04', ), array( 'title' => 'My Second Appointment', 'start' => '2010-10-05', ), ),Was there another way to get this to work?
Like giobien5 mentioned, when you want to embed some callback functions you will run into problems. This includes just about any javascript function you would use to handle the updating or adding of items in the calendar.
Basically this extension works great if you just want to display a calendar but not use any of FullCalendars ajax functionality to manipulate calendar events.
So this is off to a great start and I will try to update the extension with the extra functionality for everyone to use.
Sharehua, do you think you could start a google code project for this so we can commit changes we make for the community?
How to interact with the calendar (add, remove, update events)?
Thank you for your effort here.
When modifi for even on calendar as demo/selectable.htm Can not emdeb javascription function.
Leave a comment
Please login to leave your comment.