上个月按钮应该隐藏,ng-show="isPastMonth(calendarDate)"
上个月的
上个月。角度引导日历中是否有任何选项可以隐藏过去几个月的decrement="calendarView"
?
<button
class="btn btn-primary"
mwl-date-modifier
date="vm.viewDate"
decrement="vm.calendarView">
Previous
</button>
演示:http://plnkr.co/edit/LE4F4U7AnnD3tjM9ZH4G?p=preview
您可以使用
vm.previousMonth = angular.copy((vm.viewDate.getFullYear() * 12) + vm.viewDate.getMonth()) - 1;
//To get the previous month then to disable using this condition
ng-disabled="vm.previousMonth === ((vm.viewDate.getFullYear() * 12) + vm.viewDate.getMonth()) - 1"
在这里查看 http://plnkr.co/edit/NFI6tq?p=preview