Datepickerポップアップを実装しようとしています。 Hereと表示されているように、私は始動ページの例を使用しています。カレンダーアイコンをクリックすると、ポップアップが表示されますが、日付はありません。ちょうど左右の矢印で、このエラーが発生します。Angular.ui Datepickerを使用している日付が表示されません
私は他のすべてのディレクティブをテストしていませんが、私が試したもの(ツールチップ、カルーセルなど)はすべて動作します。ここで
は、私は、ドキュメントから使用されるマークアップである:ここでは
<p class="input-group">
<input type="text" class="form-control" uib-datepicker-popup ng-model="dt" is-open="popup2.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="open2()"><i class="glyphicon glyphicon-calendar"></i></button>
</span>
</p>
は、私はドキュメントサイトから使用JSである:ここでは
$scope.today = function() {
$scope.dt = new Date();
};
$scope.today();
$scope.clear = function() {
$scope.dt = null;
};
$scope.inlineOptions = {
customClass: getDayClass,
minDate: new Date(),
showWeeks: true
};
$scope.dateOptions = {
dateDisabled: disabled,
formatYear: 'yy',
maxDate: new Date(2020, 5, 22),
minDate: new Date(),
startingDay: 1
};
// Disable weekend selection
function disabled(data) {
var date = data.date,
mode = data.mode;
return mode === 'day' && (date.getDay() === 0 || date.getDay() === 6);
}
$scope.toggleMin = function() {
$scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date();
$scope.dateOptions.minDate = $scope.inlineOptions.minDate;
};
$scope.toggleMin();
$scope.open1 = function() {
$scope.popup1.opened = true;
};
$scope.open2 = function() {
$scope.popup2.opened = true;
};
$scope.setDate = function(year, month, day) {
$scope.dt = new Date(year, month, day);
};
$scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];
$scope.format = $scope.formats[0];
$scope.altInputFormats = ['M!/d!/yyyy'];
$scope.popup1 = {
opened: false
};
$scope.popup2 = {
opened: false
};
var tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);
var afterTomorrow = new Date();
afterTomorrow.setDate(tomorrow.getDate() + 1);
$scope.events = [
{
date: tomorrow,
status: 'full'
},
{
date: afterTomorrow,
status: 'partially'
}
];
function getDayClass(data) {
var date = data.date,
mode = data.mode;
if (mode === 'day') {
var dayToCheck = new Date(date).setHours(0,0,0,0);
for (var i = 0; i < $scope.events.length; i++) {
var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0);
if (dayToCheck === currentDay) {
return $scope.events[i].status;
}
}
}
return '';
}
は、コンソールのエラーです:
Empty string passed to getElementById()./
Error: date1 is undefined
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2424:9
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2171:28
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2414:34
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2138:7
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2403:5
[email protected]://localhost:3000/lib/angular-bootstrap/ui-bootstrap-tpls.js:2563:7
[email protected]://localhost:3000/lib/angular/angular.js:9623:9
[email protected]://localhost:3000/lib/angular/angular.js:9022:11
[email protected]://localhost:3000/lib/angular/angular.js:9380:11
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8213:30
[email protected]://localhost:3000/lib/angular/angular.js:8350:16
[email protected]://localhost:3000/lib/angular/angular.js:9072:20
ngSwitchWatchAction/<@http://localhost:3000/lib/angular/angular.js:29434:13
[email protected]://localhost:3000/lib/angular/angular.js:321:11
[email protected]://localhost:3000/lib/angular/angular.js:29433:11
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:16869:23
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17133:13
ngEventHandler/<@http://localhost:3000/lib/angular/angular.js:24813:17
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:8497
m.event.add/[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:5235
EventListener.handleEvent*[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:5723
.on/<@http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:15011
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:2973
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:833
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:14990
[email protected]://localhost:3000/lib/angular/angular.js:24806:13
[email protected]://localhost:3000/lib/angular/angular.js:9623:9
[email protected]://localhost:3000/lib/angular/angular.js:9022:11
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:9017:24
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:9017:24
[email protected]://localhost:3000/lib/angular/angular.js:9380:11
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8213:30
[email protected]://localhost:3000/lib/angular/angular.js:8350:16
[email protected]://localhost:3000/lib/angular/angular.js:9072:20
ngSwitchWatchAction/<@http://localhost:3000/lib/angular/angular.js:29434:13
[email protected]://localhost:3000/lib/angular/angular.js:321:11
[email protected]://localhost:3000/lib/angular/angular.js:29433:11
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:16869:23
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17133:13
ngEventHandler/<@http://localhost:3000/lib/angular/angular.js:24813:17
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:8497
m.event.add/[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:5235
EventListener.handleEvent*[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:5723
.on/<@http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:15011
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:2973
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:833
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:4:14990
[email protected]://localhost:3000/lib/angular/angular.js:24806:13
[email protected]://localhost:3000/lib/angular/angular.js:9623:9
[email protected]://localhost:3000/lib/angular/angular.js:9022:11
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:9017:24
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:8336:13
[email protected]://localhost:3000/lib/angular/angular.js:8213:30
$ViewDirectiveFill/<.compile/<@http://localhost:3000/lib/angular-ui-router/release/angular-ui-router.js:4089:9
[email protected]://localhost:3000/lib/angular/angular.js:9623:9
[email protected]://localhost:3000/lib/angular/angular.js:9022:11
[email protected]://localhost:3000/lib/angular/angular.js:8333:13
[email protected]://localhost:3000/lib/angular/angular.js:8213:30
[email protected]://localhost:3000/lib/angular/angular.js:8551:16
[email protected]://localhost:3000/lib/angular-ui-router/release/angular-ui-router.js:4021:23
$ViewDirective/directive.compile/</<@http://localhost:3000/lib/angular-ui-router/release/angular-ui-router.js:3959:11
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17348:15
transitionTo/$state.transition<@http://localhost:3000/lib/angular-ui-router/release/angular-ui-router.js:3352:11
[email protected]://localhost:3000/lib/angular/angular.js:15757:28
scheduleProcessQueue/<@http://localhost:3000/lib/angular/angular.js:15773:27
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17025:16
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:16841:15
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17133:13
[email protected]://localhost:3000/lib/angular/angular.js:11454:36
[email protected]://localhost:3000/lib/angular/angular.js:11652:7
[email protected]://localhost:3000/lib/angular/angular.js:11593:9
EventHandlerNonNull*createHttpBackend/<@http://localhost:3000/lib/angular/angular.js:11576:7
[email protected]://localhost:3000/lib/angular/angular.js:11423:9
$http/[email protected]://localhost:3000/lib/angular/angular.js:11133:16
[email protected]://localhost:3000/lib/angular/angular.js:15757:28
scheduleProcessQueue/<@http://localhost:3000/lib/angular/angular.js:15773:27
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17025:16
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:16841:15
$RootScopeProvider/this.$get</[email protected]://localhost:3000/lib/angular/angular.js:17133:13
[email protected]://localhost:3000/lib/angular/angular.js:1713:9
[email protected]://localhost:3000/lib/angular/angular.js:4625:16
bootstrap/[email protected]://localhost:3000/lib/angular/angular.js:1711:5
[email protected]://localhost:3000/lib/angular/angular.js:1731:12
[email protected]://localhost:3000/modules/core/client/app/init.js:43:5
m.Callbacks/[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:27304
m.Callbacks/[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:28122
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:29954
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:30320
EventListener.handleEvent*[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:30456
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:29706
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:24733
[email protected]://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:393
@http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:30891
@http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:207
@http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js:2:2
<table data-ng-animate="1" ng-switch-when="month" tabindex="0" class="uib-monthpicker" role="grid" aria-labelledby="{{::uniqueId}}-title" aria-activedescendant="{{activeDateId}}">
コンソールエラーの大きなブロックだけでなく、いくつかのコードを含めてください。 –
@AlonEitanコードを追加しました。 –