You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
I am using AngularStrap library to show modals. Within that I show the calendar. My config is;
$scope.uiConfig = { calendar: { height: 450, editable: true, views: { listDay: { buttonText: 'list day' }, listWeek: { buttonText: 'list week' }, listYear: { buttonText: 'list year' } }, header: { left: 'prev,next today', center: 'title', right: 'listYear,listDay,listWeek,month' }, eventClick: $scope.alertEventOnClick, select: function (start, end, jsEvent, view) { console.log(start + ' ' + end); }, loading: function (bool) { console.log("loading"); } } };
`
Calendar renders fine. However none of the events get fired! The example I have followed are the same one in the site. Have any one tried to show this calendar in a modal ?
The text was updated successfully, but these errors were encountered:
I am using AngularStrap library to show modals. Within that I show the calendar. My config is;
$scope.uiConfig = {
calendar: {
height: 450,
editable: true,
views: {
listDay: { buttonText: 'list day' },
listWeek: { buttonText: 'list week' },
listYear: { buttonText: 'list year' }
},
header: {
left: 'prev,next today',
center: 'title',
right: 'listYear,listDay,listWeek,month'
},
eventClick: $scope.alertEventOnClick,
select: function (start, end, jsEvent, view) {
console.log(start + ' ' + end);
},
loading: function (bool) {
console.log("loading");
}
}
};
`
Calendar renders fine. However none of the events get fired! The example I have followed are the same one in the site. Have any one tried to show this calendar in a modal ?
The text was updated successfully, but these errors were encountered: