# ui-calendar directive [![Build Status](https://travis-ci.org/angular-ui/ui-calendar.png?branch=master)](https://travis-ci.org/angular-ui/ui-calendar) A complete AngularJS directive for the Arshaw FullCalendar. # Requirements - ([AngularJS](http://code.angularjs.org/1.2.1/angular.js)) - ([fullcalendar.js 2.0 and it's dependencies](http://arshaw.com/fullcalendar/download/)) - optional - ([gcal-plugin](http://arshaw.com/js/fullcalendar-1.5.3/fullcalendar/gcal.js)) # Testing We use karma and grunt to ensure the quality of the code. npm install -g grunt-cli npm install bower install grunt # Usage We use [bower](http://twitter.github.com/bower/) for dependency management. Add dependencies: { "angular-ui-calendar": "latest" } To your `components.json` file. Then run bower install This will copy the ui-calendar files into your `components` folder, along with its dependencies. Load the script files in your application: Add the calendar module as a dependency to your application module: var myAppModule = angular.module('MyApp', ['ui.calendar']) Apply the directive to your div elements. The calendar must be supplied an array of decoumented event sources to render itself:
## Options All the Arshaw Fullcalendar options can be passed through the directive. This even means function objects that are declared on the scope. myAppModule.controller('MyController', function($scope) { /* config object */ $scope.uiConfig = { calendar:{ height: 450, editable: true, header:{ left: 'month basicWeek basicDay agendaWeek agendaDay', center: 'title', right: 'today prev,next' }, dayClick: $scope.alertEventOnClick, eventDrop: $scope.alertOnDrop, eventResize: $scope.alertOnResize } }; });
## Working with ng-model The ui-calendar directive plays nicely with ng-model. An Event Sources objects needs to be created to pass into ng-model. This object will be watched for changes and update the calendar accordingly, giving the calendar some Angular Magic. The ui-calendar directive expects the eventSources object to be any type allowed in the documentation for the fullcalendar. [docs](http://arshaw.com/fullcalendar/docs/event_data/Event_Source_Object/) Note that all calendar options which are functions that are passed into the calendar are wrapped in an apply automatically. ## Accessing the calendar object To avoid potential issues, by default the calendar object is not available in the parent scope. Access the object by declaring a calendar attribute name:
Now the calendar object is available in the parent scope: $scope.myCalendar.fullCalendar This allows you to declare any number of calendar objects with distinct names. ## Custom event rendering You can use fullcalendar's `eventRender` option to customize how events are rendered in the calendar. However, only certain event attributes are watched for changes (they are `id`, `title`, `url`, `start`, `end`, `allDay`, and `className`). If you need to automatically re-render other event data, you can use `calendar-watch-event`. `calendar-watch-event` expression must return a function that is passed `event` as argument and returns a string or a number, for example: $scope.extraEventSignature = function(event) { returns "" + event.price; } // will now watch for price ## Watching the displayed date range of the calendar There is no mechanism to $watch the displayed date range on the calendar due to the JQuery nature of fullCalendar. If you want to track the dates displayed on the calendar so you can fetch events outside the scope of fullCalendar (Say from a caching store in a service, instead of letting fullCalendar pull them via AJAX), you can add the viewRender callback to the calendar config. $scope.calendarConfig = { calendar:{ height: "100%", ... viewRender: function(view, element) { $log.debug("View Changed: ", view.visStart, view.visEnd, view.start, view.end); } } }; ## Documentation for the Calendar The calendar works alongside of all the documentation represented [here](http://arshaw.com/fullcalendar/docs) ## PR's R always Welcome Make sure that if a new feature is added, that the proper tests are created.