如何启用所有日期
How to enable all dates
我正在使用 angular ui bootstrap 库 (http://angular-ui.github.io/bootstrap/) 中的 angular ui 日期选择器小部件。默认情况下,日期选择器只允许启用今天或以后的日期。今天之前的所有日期都被禁用。我希望启用日期选择器上的所有日期。我怎样才能做到这一点?请指教
以下站点显示了如何禁用仅周末。
http://angular-ui.github.io/bootstrap/
我更改了范围功能(从该站点),以便启用所有周末。但是所有今天之前的日期(工作日和周末)仍然被禁用。
我的 $scope.disabled() 函数控制器代码更新:
$scope.disabled = function (date, mode) {
return false;
};
这是我使用日期选择器小部件的标记:
<input type="text" id="textSearchUpdatedDate"
uib-datepicker-popup="{{format}}" ng-model="updatedDateChangeText"
ng-change="searchUpdatedDateChanged()" ng-keyup="searchUpdatedDateChanged()"
is-open="status.opened"
min-date="minDate"
max-date="maxDate"
datepicker-options="dateOptions"
date-disabled="disabled(date, mode)"
ng-required="true"
close-text="Close" />
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
删除 min-date
和 max-date
属性可能会有所帮助。
我正在使用 angular ui bootstrap 库 (http://angular-ui.github.io/bootstrap/) 中的 angular ui 日期选择器小部件。默认情况下,日期选择器只允许启用今天或以后的日期。今天之前的所有日期都被禁用。我希望启用日期选择器上的所有日期。我怎样才能做到这一点?请指教
以下站点显示了如何禁用仅周末。 http://angular-ui.github.io/bootstrap/
我更改了范围功能(从该站点),以便启用所有周末。但是所有今天之前的日期(工作日和周末)仍然被禁用。
我的 $scope.disabled() 函数控制器代码更新:
$scope.disabled = function (date, mode) {
return false;
};
这是我使用日期选择器小部件的标记:
<input type="text" id="textSearchUpdatedDate"
uib-datepicker-popup="{{format}}" ng-model="updatedDateChangeText"
ng-change="searchUpdatedDateChanged()" ng-keyup="searchUpdatedDateChanged()"
is-open="status.opened"
min-date="minDate"
max-date="maxDate"
datepicker-options="dateOptions"
date-disabled="disabled(date, mode)"
ng-required="true"
close-text="Close" />
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
删除 min-date
和 max-date
属性可能会有所帮助。