加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

重写AngularJs DatePicker弹出窗口以添加新标题

发布时间:2020-12-17 07:24:44 所属栏目:安全 来源:网络整理
导读:这个问题说明了一切. 我追求高和低低,并没有看到一种方式,但是,在我破解模板之前,我以为我会问这里. 只是为了说清楚 – 我希望能够在日期选择器的顶部添加一些文本(这是一个弹出窗口,如果这有任何区别),例如“你的生日是什么时候?”. 如果你遵循这个主题,有
这个问题说明了一切.

我追求高和低低,并没有看到一种方式,但是,在我破解模板之前,我以为我会问这里.

只是为了说清楚 – 我希望能够在日期选择器的顶部添加一些文本(这是一个弹出窗口,如果这有任何区别),例如“你的生日是什么时候?”.

如果你遵循这个主题,有很多方法可以做到这一点: Can you override specific templates in AngularUI Bootstrap?但我只会限制为两个,其中一个是CSS.

模板覆盖:

Plunker Demo

弹出文件的默认文件是template / datepicker / popup.html,您只需要复制文件的内容并向其中添加新代码即可.然后新代码将包含在< script id =“template / datepicker / popup.html”type =“text / ng-template”>中. directive并置于< head>内

angular.module('ui.bootstrap.demo',['ngAnimate','ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('DatepickerDemoCtrl',function($scope) {
  $scope.today = function() {
    $scope.dt = new Date();
  };
  $scope.today();

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

  // Disable weekend selection
  $scope.disabled = function(date,mode) {
    return (mode === 'day' && (date.getDay() === 0 || date.getDay() === 6));
  };

  $scope.toggleMin = function() {
    $scope.minDate = $scope.minDate ? null : new Date();
  };
  $scope.toggleMin();
  $scope.maxDate = new Date(2020,5,22);

  $scope.open = function($event) {
    $scope.status.opened = true;
  };

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

  $scope.dateOptions = {
    formatYear: 'yy',startingDay: 1
  };

  $scope.formats = ['dd-MMMM-yyyy','yyyy/MM/dd','dd.MM.yyyy','shortDate'];
  $scope.format = $scope.formats[0];

  $scope.status = {
    opened: false
  };

  var tomorrow = new Date();
  tomorrow.setDate(tomorrow.getDate() + 1);
  var afterTomorrow = new Date();
  afterTomorrow.setDate(tomorrow.getDate() + 2);
  $scope.events = [{
    date: tomorrow,status: 'full'
  },{
    date: afterTomorrow,status: 'partially'
  }];

  $scope.getDayClass = function(date,mode) {
    if (mode === 'day') {
      var dayToCheck = new Date(date).setHours(0,0);

      for (var i = 0; i < $scope.events.length; i++) {
        var currentDay = new Date($scope.events[i].date).setHours(0,0);

        if (dayToCheck === currentDay) {
          return $scope.events[i].status;
        }
      }
    }

    return '';
  };
});

angular.module("template/alert/alert.html",[]).run(["$templateCache",function($templateCache) {
    $templateCache.put("template/alert/alert.html","      <div class='alert' ng-class='type && "alert-" + type'>n" +
      "          <button ng-show='closeable' type='button' class='close' ng-click='close()'>Close</button>n" +
      "          <div ng-transclude></div>n" +
      "      </div>");
  }
]);
.popup-header {
  text-align: center;
  font-weight: bold;
  padding: 10px;
}
<!doctype html>
<html ng-app="ui.bootstrap.demo">

<head>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.js"></script>
  <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.14.3.js"></script>
  <script src="example.js"></script>
  <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
  <link href="style.css" rel="stylesheet">

  <!-- Overriding code -->

  <script id="template/datepicker/popup.html" type="text/ng-template">
    <ul class="uib-datepicker-popup dropdown-menu" dropdown-nested ng-if="isOpen" style="display: block" ng-style="{top: position.top+'px',left: position.left+'px'}" ng-keydown="keydown($event)" ng-click="$event.stopPropagation()">
      <!-- Extra code -->

      <div class="popup-header">When is your Birthday?</div>

      <!-- Extra code -->
      <li ng-transclude></li>
      <li ng-if="showButtonBar" style="padding:10px 9px 2px" class="uib-button-bar">
        <span class="btn-group pull-left">
			<button type="button" class="btn btn-sm btn-info uib-datepicker-current" ng-click="select('today')" ng-disabled="isDisabled('today')">{{ getText('current') }}</button>
			<button type="button" class="btn btn-sm btn-danger uib-clear" ng-click="select(null)">{{ getText('clear') }}</button>
		</span>
        <button type="button" class="btn btn-sm btn-success pull-right uib-close" ng-click="close()">{{ getText('close') }}</button>
      </li>
    </ul>
  </script>

  <!-- Overriding code -->
</head>

<body>




  <div ng-controller="DatepickerDemoCtrl">



    <div class="row">
      <div class="col-xs-offset-3 col-xs-6 col-md-3">
        <h4 class="text-center">Date picker Popup</h4>
        <p class="input-group">
          <input type="text" class="form-control date-picker" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="status.opened" min-date="minDate" max-date="maxDate" datepicker-options="dateOptions" date-disabled="disabled(date,mode)" ng-required="true"
          close-text="Close" />
          <span class="input-group-btn">
                <button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
              </span>
        </p>
      </div>
    </div>

  </div>
</body>

</html>

CSS编辑:

这是一种非标准的方式,但它不会干扰您的模板结构.

Plunker Demo

:在CSS中的伪元素之前支持content属性来创建文本.由于您不需要添加标题文本/标题以外的任何内容,因此这是一个合适的解决方案.检查Plunkr中的style.css文件以编辑文本.

angular.module('ui.bootstrap.demo',0);

        if (dayToCheck === currentDay) {
          return $scope.events[i].status;
        }
      }
    }

    return '';
  };
});
.date-picker + .dropdown-menu::before {
  content: "When is your Birthday?";
  font-weight: bold;
  position: relative;
  left: 25%;
}
.date-picker + .dropdown-menu li {
  margin-top: 5px;
}
<!doctype html>
<html ng-app="ui.bootstrap.demo">

<head>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.js"></script>
  <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.14.3.js"></script>
  <script src="example.js"></script>
  <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
  <link href="style.css" rel="stylesheet">
</head>

<body>

  <div ng-controller="DatepickerDemoCtrl">



    <div class="row">
      <div class="col-xs-offset-3 col-xs-6 col-sm-offset-4 col-sm-4 col-md-3">
        <h4 class="text-center">Date picker Popup</h4>
        <p class="input-group">
          <input type="text" class="form-control date-picker" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="status.opened" min-date="minDate" max-date="maxDate" datepicker-options="dateOptions" date-disabled="disabled(date,mode)" ng-required="true"
          close-text="Close" />
          <span class="input-group-btn">
                <button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
              </span>
        </p>
      </div>
    </div>

  </div>
</body>

</html>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读