0

前月のボタンは、今月末には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

答えて

0

あなたは

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

+0

おかげでそれを確認してください。私は 'ng-show'でボタンを隠すことを意味します – Muhammed

+0

ng-hideと同じ条件を使用することができます。もちろん、 –

+0

はい。 – Muhammed

関連する問題