将daterangepicker转换为angular指令

时间:2015-02-26 14:44:45

标签: javascript jquery angularjs angularjs-directive daterangepicker

我正在尝试将一个daterangepicker插件包装到一个angular指令中。虽然我设法通过警告回调函数中的选定日期使其工作,但我似乎无法将选定的日期保存到$ scope或更新ng-model。我添加了评论' // CALLBACK of daterangepicker'所以任何看到这个的人都可以在下面的代码中轻松找到它。我希望有经验的人可以了解如何实现这一目标。

HTML(调用指令):

<input id="date-range-picker" class="form-control" type="text" 

NG-模型=&#34;日期&#34; time-recorder-date-range-picker /&gt;

Angular指令:

module.directive('timeRecorderDateRangePicker', function() {
    return {
        restrict: 'A',
        require: 'ngModel',
        link: function(scope, element, attrs, ngModelCtrl) {
            element.daterangepicker({
                startDate: moment.utc().subtract(7, 'days'),
                endDate: moment.utc(),
                minDate: '01/01/2014',
                maxDate: moment.utc(),
                dateLimit: {
                    days: 365
                },
                showDropdowns: false,
                showWeekNumbers: true,
                timePicker: false,
                ranges: {
                    'Today': [moment.utc(), moment.utc()],
                    'Yesterday': [moment.utc().subtract(1, 'days'), moment.utc().subtract(1, 'days')],
                    'Last 7 Days': [moment.utc().subtract(6, 'days'), moment.utc()],
                    'Last 30 Days': [moment.utc().subtract(29, 'days'), moment.utc()],
                    'This Month': [moment.utc().startOf('month'), moment.utc().endOf('month')],
                    'Last Month': [moment.utc().subtract(1, 'month').startOf('month'), moment.utc().subtract(1, 'month').endOf('month')]
                },
                opens: 'right',
                format: 'MMMM D, YYYY',
                separator: ' to ',
                buttonClasses: ['btn btn-default'],
                locale: {
                    applyLabel: 'Apply',
                    cancelLabel: 'Cancel',
                    fromLabel: 'From',
                    toLabel: 'To',
                    customRangeLabel: 'Custom',
                    daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
                    monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
                    firstDay: 1
                }
            }, function(start, end, label) {
                // CALLBACK of daterangepicker
                alert('Callback!!!');
            }).prev().on('click', function() { // makes calendar icon click work
                $(this).next().focus();
            });
        }
    };
});

2 个答案:

答案 0 :(得分:1)

您可以使用jqlite在Angularjs项目中使用dangrossman's bootstrap-daterangepicker,试试这个

在HTML中

<input type="text" id="daterange" />

然后使用jqlite

将选择器附加到要触发它的元素
 angular.element('#daterange').daterangepicker({
        timePicker: true,
        timePickerIncrement: 30,
        locale: {
            format: 'MM/DD/YYYY h:mm A'
        }
    });

您也可以使用活动

    angular.element('#daterange').on('apply.daterangepicker', function(ev, picker) {
      //do something, like calling a function
      $scope.doSomething(picker.startDate, picker.endDate);
    });

答案 1 :(得分:0)

您可以将datepicker转换为指令,并启用模型更新,如下所示:

angular.module('DatePicker', [])
.directive('datepicker', function() {
    return {
      restrict: 'A',
      require: 'ngModel',
      link: function(scope, element, attrs, ngModelCtrl) {
        element.datepicker({
          format: 'dd/mm/yy',
          onSelect: function(date) {
            ngModelCtrl.$setViewValue(date),
              scope.$apply();
          }
        });
      }
    }
  });