Home > Net >  How to disable past dates from today in bootstrap date in reactive form angular
How to disable past dates from today in bootstrap date in reactive form angular

Time:10-16

How to disable past dates from today in bootstrap date in reactive form angularenter image description here depature date allows the today dates and next dates but previous dates not allowed

CodePudding user response:

$('#date').datepicker({ startDate: date });

something like that. idk what version or what datepicker are you using but hope that helps

Bootstrap datepicker disabling past dates without current date

CodePudding user response:

You can user this property 'startDate' also.

  • Related