uib-datepicker-popup不显示日历

时间:2016-07-27 10:10:13

标签: javascript angularjs twitter-bootstrap datepicker

我正在使用Express和AngularJS。我试图用ui-bootstrap模块添加日期选择器。当我添加uib-datepicker时,它工作正常。但是当我尝试添加一个uib-datepicker-popup时,结果就像那样

uib-datepicker-popup

当我点击日历按钮时,它会显示一个弹出窗口,但只有今天,清除和关闭按钮。它不显示日历。

这是我的HTML

<div ng-controller="DatepickerPopupDemoCtrl">
<pre>Selected date is: <em>{{dt | date:'fullDate' }}</em></pre>


  <div class="col-md-6">
    <p class="input-group">
      <input type="text" uib-datepicker-popup class="form-control" 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>
  </div>
</div>

和控制器

app.controller('DatepickerPopupDemoCtrl', function ($scope) {


$scope.today = function() {
    $scope.dt = new Date();
  };
  $scope.today();

  $scope.clear = function() {
    $scope.dt = null;
  };

    $scope.toggleMin = function() {
    $scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date();
    $scope.dateOptions.minDate = $scope.inlineOptions.minDate;
  };


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

  $scope.open2 = function() {
    $scope.popup2.opened = !$scope.popup2.opened;
  };

  $scope.setDate = function(year, month, day) {
    $scope.dt = new Date(year, month, day);
  };

  $scope.format = 'yyyy-MM-dd';
  $scope.altInputFormats = ['M!/d!/yyyy'];

  $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 '';
  }
});

以下是我使用代码的文档:https://angular-ui.github.io/bootstrap/

提前致谢。

2 个答案:

答案 0 :(得分:1)

你应该使用带有angularjs的jade。 如果要添加日期选择器弹出窗口,可以使用下面的代码 对于HTML

<input type="text" uib-datepicker-popup="" name="dob" placeholder="Please enter date in YYYY-mm-dd format" 
  ng-model="dob" is-open="popup2.opened" datepicker-options="dateOptions"
  ng-required="true" close-text="Close" class="form-control"/>
<span class="input-group-btn">
  <button type="button" ng-click="open2()" class="btn btn-default">
    <i class="glyphicon glyphicon-calendar"></i>
  </button>
</span>

并在控制器中添加

$scope.dateOptions = {
  formatYear: 'yy',
  maxDate: new Date(2020, 5, 22),
  minDate: new Date(1970, 1, 1),
  startingDay: 1
};
$scope.open = function() {
  $scope.popup.opened = true;
};
$scope.popup = {
  opened: false
};
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 '';
}

这在你的css文件中

<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">

答案 1 :(得分:0)

在我的情况下,我没有在我的项目中使用npm(或bower)。因此,当我们使用uib-datepicker-popup时,我必须手动将以下文件(从here下载)放入路径中,以使日期弹出日期。

WebPages
L___uib
    L___template
       L____datepicker
           L____datepicker.html
           L____day.html
           L____month.html
           L____year.html
       L____datepickerPopup
           L____poup.html