繁体   English   中英

将daterangepicker转换为angular指令

[英]Converting daterangepicker to angular directive

我正在尝试将daterangepicker插件包装到angular指令中。 尽管我设法通过在回调函数中提醒选定的日期来使其起作用,但似乎无法将选定的日期保存到$ scope或更新ng-model。 我添加了注释'// daterangepicker的CALLBACK',以便任何看到此内容的人都可以在下面的代码中轻松找到它。 我希望有更多经验的人可以阐明如何实现这一目标。

HTML(调用指令):

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

ng-model =“ date” time-recorder-date-range-picker />

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();
            });
        }
    };
});

您可以使用jqlite在Angularjs项目中使用dangrossman的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);
    });

您可以将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();
          }
        });
      }
    }
  });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM