我正在使用 angular ui 引导库 ( http://angular-ui.github.io/bootstrap/ ) 中的 angular ui datepicker 小部件。默认情况下,日期选择器只允许启用今天或以后的日期。今天之前的所有日期都被禁用。我希望启用日期选择器上的所有日期。我怎样才能做到这一点?请指教。
以下站点显示了如何仅禁用周末。 http://angular-ui.github.io/bootstrap/
我更改了范围功能(从该站点),因此启用了所有周末。但是今天之前的所有日期(工作日和周末)仍然被禁用。
我的 $scope.disabled() 函数的控制器代码更新:
$scope.disabled = function (date, mode) {
return false;
};
这是我使用 datepicker 小部件的标记:
<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>