How disable all the dates before a particular date in angular?

前端 未结 6 1638
别跟我提以往
别跟我提以往 2021-02-07 20:15

I am building a component (html, css, spec.ts, ts) in angular in which I always want endDate > startDate. I have followed this link https://material.angular.io/components/datepi

6条回答
  •  不要未来只要你来
    2021-02-07 20:51

    Binding with [min] works perfect for any date

    .ts file

    //today's date
    todayDate:Date = new Date();
    
    //any date
    someDate: Date = new Date(anydate);
    

    .html file

     
             
            
            
      
    

提交回复
热议问题