I'm using FullCalendar plugin in a Angular project and trying to alert a value on select method of the plugin.
//Directive
app.directive('calendar', function(){
return {
restrict: 'A',
scope: {
select: '&'
},
link: function(scope, element, attrs) {
element.fullCalendar({
selectable: true,
select: function(start, end, allDay) {
scope.select(start, end);
//alert(start);
}
});
}
}
})
app.controller('calendarCtrl', function() {
this.onSelect = function(arg, arg2) {
alert(arg + '' + arg2)
}
});
HTML
<body ng-controller="calendarCtrl as clctrl">
<div calendar select="clctrl.onSelect()"></div>
</body>
As you can see above in the directive, on selecting a day, I'm passing the onSelect()
function which has the alert from controller. I'm trying to alert the first 2 return values(start and end) but I'm getting undefined values.
What is wrong in my code? I would appreciate if you could update plunker.
updated plunker