Open danillocesar opened 7 years ago
@danillocesar You can use isDateDisabled option. There are more details in the README.
@danillocesar you can use something like
$scope.isDateDisabled = function(d){
var now = new Date();
return (d < now);
};
in the template add the attribute is-date-disabled="isDateDisabled(date)"
@danillocesar had u disable the previous dates in calendar
@gsaikrishna32 You can just follow the code snippet masia5 provided.
How do i disable previous dates? I want to change the previous date to a different color.