3

我正在使用基于 fullcalendar 的 Angular 模块:https ://github.com/angular-ui/ui-calendar以及来自 ng-bootstrap 的对话框模块。我将日历配置为显示一个对话框,用于在 eventClick 操作上编辑事件。它只工作一次。关闭第一个对话框并再次单击任何事件后,新对话框不会显示。但是,当我单击页面上的任何其他链接时,所有所需的对话框都会一一显示,就像它们以某种方式在某处排队一样。

这是我的控制器的片段:

 $scope.showEditVisitDialog = function (event) {
    var editVisitDialogOpts = {
        backdropClick: false,
        templateUrl: 'views/addEditVisitDialog.html',
        controller: 'AddEditVisitDialogController',
        resolve: {
            patientId: function () {
                return event.patientId;
            },
            visitId: function () {
                return event.id;
            }
        }
    };
    var editVisitDialog = $dialog.dialog(editVisitDialogOpts);
    editVisitDialog.open().then(function (updatedVisit) {
    //some action
    });
};


$scope.calendar = {
    height: 450,
    editable: true,
    header: {
        left: 'month agendaWeek ',
        center: 'title',
        right: 'today prev,next'
    },
    eventClick: $scope.showEditVisitDialog
};
$scope.events = [];
$scope.eventSources = [$scope.events]

稍后在控制器中从 REST 获取事件。

在 html 中: <div ui-calendar="calendar" config="calendar" ng-model="eventSources"/>

控制台没有错误,我做错了什么?

plunker 上的代码:http ://plnkr.co/edit/89sQfsU85zN4uxauFI2Y?p=preview

4

2 回答 2

4

与往常一样,当有可用的小提琴/plnkr 时,事情会更简单、更明显。您需要showEditVisitDialog在 $apply 函数中调用:

...
$scope.calendar = {
  editable: true,
  eventClick: function(){
    $scope.$apply(function(){
      $scope.showEditVisitDialog()
    });
  }
};
...

工作plnkr

于 2013-05-19T16:20:57.853 回答
2

您需要在日历的 uiConfig 之前声明您的功能;)

于 2015-02-26T17:05:14.203 回答