twinssbc / Ionic-Calendar

A calendar directive for Ionic framework
http://twinssbc.github.io/Ionic-Calendar/demo
MIT License
159 stars 73 forks source link

How to disable previous date #113

Open danillocesar opened 7 years ago

danillocesar commented 7 years ago

How do i disable previous dates? I want to change the previous date to a different color.

twinssbc commented 7 years ago

@danillocesar You can use isDateDisabled option. There are more details in the README.

masia5 commented 7 years ago

@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)"

gsaikrishna32 commented 7 years ago

@danillocesar had u disable the previous dates in calendar

twinssbc commented 7 years ago

@gsaikrishna32 You can just follow the code snippet masia5 provided.