ui-calendar icon indicating copy to clipboard operation
ui-calendar copied to clipboard

Show calendar in a bootstrap modal

Open mkgn opened this issue 7 years ago • 1 comments

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 ?

mkgn avatar Dec 05 '17 13:12 mkgn

I have same problem, calendar dont render in my modal when I do click in a button that show it

josegoyo avatar Apr 27 '19 18:04 josegoyo