daterangepicker プラグインを angular ディレクティブにラップしようとしています。コールバック関数で選択した日付をアラートすることでなんとか機能させることができましたが、選択した日付を $scope に保存したり、ng-model を更新したりすることはできません。コメント「// CALLBACK of daterangepicker」を追加して、これを見た人が下のコードで簡単に見つけられるようにしました。経験豊富な人が、これをどのように達成できるかを明らかにしてくれることを願っています。
HTML (ディレクティブの呼び出し):
<input id="date-range-picker" class="form-control" type="text"
ng-model="date" time-recorder-date-range-picker />
角度指令:
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();
});
}
};
});